JavaScript must be enabled to play.
Browser lacks capabilities required to play.
Upgrade or switch to another browser.
Loading…
<<bg "city">> <div class="content-panel"> <img src="img/title-screen.png" style="width: 80%;"> <<regButton "intro1" "Start Game">> </div> <<backend>>[[intro1]][[syntax]][[StoryInit]][[RightSidebar]][[player-profile]][[plug]] <</backend>>
<<backend>> <<set $tier = 3>> <<set $schoolDay = $day != "Saturday" && $day != "Sunday">> <<set $daystate to getDayState($hour)>> <<set $colors = getDayColor($hour)>> <<set $daycolor = $colors.color>> <<set $dayline = $colors.outline>> <<set $dayglow = $colors.glow>> <<set $dayline to "0.5px " + $dayline>> <<set $dayglow to "12px " + $dayglow>> <<set $displaytime = ($hour > 12 ? ($hour - 12) : $hour) + ":" + ($minute < 10 ? "0" + $minute : $minute) + " " + ($hour >= 12 ? "PM" : "AM") + " (" + $daystate + ")">> <</backend>> <img src="img/StreetHero-01.png" style="width: 40%;"> The Transfer Student Remake Version 1.0 <h1 style="font-size: 20px;"><b>Day:</b> <<glow "yellow" "0.5px orange" "12px red">><<print $day>><</glow>> <b>Time:</b> <<glow $daycolor $dayline $dayglow>><<print $displaytime>><</glow>></h1><<if $hidenav == 0>><div class="button-row"><<tskip 0 15 "+15m">><<tskip 0 30 "+30m">><<tskip 1 0 "+1h">></div><</if>><<include "player-values">> <<if $hidenav == 0>> <<imgButton "quick-nav" "img/neon-buttons/nav.png">> <<imgButton "bedroom" "img/neon-buttons/bedroom.jpg">> <<imgButton "school" "img/neon-buttons/school.jpg">> <<imgButton "home" "img/neon-buttons/home.jpg">> <<imgButton "park" "img/neon-buttons/park.jpg">> <<imgButton "residential" "img/neon-buttons/residential-area.jpg">> <<imgButton "hospital" "img/neon-buttons/hospital.jpg">> <<imgButton "konbini" "img/neon-buttons/konbini.jpg">> <<imgButton "business-area" "img/neon-buttons/business-area.jpg">> <<imgButton "alley" "img/neon-buttons/alley.jpg">> <<imgButton "characters" "img/neon-buttons/characters.jpg">> <<elseif $gallery>> <<imgButton "characters" "img/neon-buttons/characters.jpg">> <</if>> <<backend>>[[player-values]][[quick-nav]][[bedroom]][[visit]][[home]][[alley]][[business-area]][[school]] <</backend>>
<<bg "jap-room">> <div class="content-panel"> <<vid "azuki/azuki-intro">> <<dialog "Azuki">>Ah~! It feels so good~! <</dialog>> <<dialog "You">>Keep it down! Didn't you say your dad was coming home!? <</dialog>> <div class="button-row"> <<regButton "intro2" "Someone enters the room">> /*<<regButton "intro8" "Skip">>*/ </div> </div> <<backend>>[[intro2]][[rank-battlecrud]] <<set $hidenav = 1>> <</backend>>
<<combat "Ken" 1 "Specialist" 30 40 100 100>>This guy is the enemy.<</combat>> <<combat "You" 1 "Specialist" 30 40 100 100>>This is you.<</combat>>
<<set $player = {money: 300, rank: 100, quest: 1, day: 0, level: 1, hp: 100, maxhp: 100, ep: 100, maxep: 100, str: 0, agi: 0, int: 0, exp: 0, points: 25, sp: 1, name: "Shin", lastname: "Sawada" }>> <<set $tempStats = JSON.parse(JSON.stringify($player))>> <<set $location = "home">> <<set $fought = false>> <<set $equip = {a: "punch", b: "guts",c: "",d: ""}>> <<set $parkRange = 1>> <<set $wins = 0>> <<set $strMetric = 0>> <<set $agiMetric = 0>> <<set $intMetric = 0>> <<set $akane = {quest: 0, day: 0, met: false, sick: false}>> <<set $anzu = {quest: 0, day: 0, met: false}>> <<set $asa = {quest: 0, day: 0, met: false}>> <<set $emi = {quest: 0, day: 0, met: false, social: 0}>> <<set $haru = {quest: 0, day: 0, met: false, social: 0, study: false}>> <<set $miku= {quest: 0, day: 0, social: 0}>> <<set $nirei = {quest: 0, day: 0, met: false}>> <<set $orie = {quest: 0, day: 0, met: false}>> <<set $rio = {quest: 0, day: 0, met: false, baseball: false, arcade: false, drink: false, eat: false}>> <<set $shiori = {quest: 0, day: 0, met: false, follow: 0}>> <<set $shizu = {quest: 0, day: 0, met: false, social: 0}>> <<set $yuki = {quest: 0, day: 0, met: false, social: 0}>> <<set $guide = "all">> <<set $inventory = {}>> <<set $line = "<hr style='width: 80%; margin: 0 auto;'>">> <<set $location to "Intro">> <<set $days = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]>> <<set $dayIndex = 0>> <<set $day = $days[$dayIndex]>> <<set $daystate = getDayState($hour)>> <<set $hour = 12>> <<set $minute = 0>> <<set $gallery = false>> <<set $profile = "player-profile">> <<set $gprofile = "player-gallery">> <<set $goto = "gallery">> <<set $hidenav = 1>> <<set $videoVolume = 1>> <<include "skills">>
<<backend>> <<include "guide limits">>[[guide limits]] <</backend>><<glow "#34cce7" "0.5px #0c6170" "12px ##083e47" "22">>Character Info<</glow>><<include "player-profile">> <div style="text-align: left; line-height:1.2; white-space: normal; width: 90%; margin: 0 auto;"><<glow "white" "0.5px yellow" "12px orange" "20">>Volume<</glow>></div><input type="range" id="globalVideoVolume" min="0" max="1" step="0.01" value="1" style="width: 90%;"> <<include "plug">> <<script>> (function () { const slider = document.getElementById("globalVideoVolume"); function updateSliderFill(slider) { const percent = (slider.value - slider.min) / (slider.max - slider.min); slider.style.setProperty('--fill', `${percent * 100}%`); } // Restore previously saved volume const savedVolume = State.variables.videoVolume ?? 1; slider.value = savedVolume; updateSliderFill(slider); slider.addEventListener("input", function (e) { const volume = parseFloat(e.target.value); State.variables.videoVolume = volume; updateSliderFill(slider); // Apply to all videos document.querySelectorAll("video").forEach(video => { video.volume = volume; }); }); })(); <</script>>
<<char "You" "You" "#34cce7" "#0c6170" "#083e47">><<if $dayIndex > 0>> <div style="font-size: 20px; font-weight: 400; line-height: 0.5; text-align: left;"><<glow "white" "0.5px yellow" "12px orange" "22">>Main Quest<</glow>></div><div style="font-size: 16px; font-weight: 400; text-align: left; line-height: 1.25; width: 85%; margin: 0 auto;"></div> <<include "player-guide">> <div style="font-size: 20px; font-weight: 400; line-height: 0.5; text-align: left;"><<glow "pink" "0.5px red" "12px red" "20">>Character Quests<</glow>></div> <div id="passage-girls"><<include "girls">></div><</if>>
<div class="button-row" style=" width: 80%; justify-content: space-around;"><<subscribe "discord" "https://discord.gg/HtF4hctjzZ">><<subscribe "gank" "https://ganknow.com/safriscoffi">><<subscribe "patreon" "https://www.patreon.com/c/Safriscoffi">></div> <h1>If you like the game, please consider supporting us on Gank or Ko-Fi! In return, gain access to builds earlier than the public release. There are a few perks too depending on your tier. If you can't afford it, joining the Discord is good enough! You might even win a temporary free subscription upgrade! Regardless, thank you for playing!</h1>
<<backend>> <<set $player.hp = Math.min($player.hp+Math.round($player.maxhp * 0.25), $player.maxhp)>> <<if $hour >= 7>> <<set $dayIndex = ($dayIndex + 1)>> <<set $day = $days[$dayIndex % $days.length]>> <</if>> <<set $hour = 7>> <<set $minute = 0>> <<set $hidenav to 0>> <<set $player.ep = $player.maxep>> <<set $profile to "player-profile">> <</backend>>
<<bg "girl-room" $hour>> <div class="content-panel"><<if $day == "Saturday" || $day == "Sunday" || $hour > 17>> <<dialog "Miku">>Hey~ Wanna do something with me? <</dialog>><<else>> <<dialog "You">>Miku's at work. <</dialog>> <</if>> <div class="button-row"> <<regButton "residential" "Leave">> </div> </div> <<backend>>[[residential]] <<set $hidenav = 0>> <</backend>>
<<bg "residential" $hour>> <div class="content-panel"> <<dialog "You">>It's so quiet here. <</dialog>> <div class="button-row"> </div> $line <div class="button-row"> <<imgButton "home" "img/neon-buttons/home.jpg">> <<imgButton "alley" "img/neon-buttons/alley.jpg">> <<imgButton "business-area" "img/neon-buttons/business-area.jpg">> </div> /*$line <div class="button-row"> <<visit "miku" "#ffffccaa" "#ffffccaa" "#ffffccaa" "miku-home">> <<visit "nirei" "#ffffccaa" "#ffffccaa" "#ffffccaa" "nirei-home">> </div>*/ </div> <<backend>> <<set $hidenav = 0>> <</backend>>
<<bg "city">> <div class="content-panel"> <<dialog "You">>Where should I go? <</dialog>> <div class="button-row"> <<imgButton "home" "img/neon-buttons/home.jpg">> <<imgButton "bedroom" "img/neon-buttons/bedroom.jpg">> </div> <div class="button-row"> <<imgButton "school" "img/neon-buttons/school.jpg">> <<imgButton "classroom" "img/neon-buttons/classroom.jpg">> <<imgButton "council" "img/neon-buttons/council-room.jpg">> <<imgButton "faculty" "img/neon-buttons/faculty.jpg">> <<imgButton "track" "img/neon-buttons/trackfield.jpg">> <<imgButton "rooftop" "img/neon-buttons/rooftop.jpg">> </div> <div class="button-row"> <<imgButton "residential" "img/neon-buttons/residential-area.jpg">> <<imgButton "business-area" "img/neon-buttons/business-area.jpg">> <<imgButton "park" "img/neon-buttons/park.jpg">> <<imgButton "hospital" "img/neon-buttons/hospital.jpg">> <<imgButton "konbini" "img/neon-buttons/konbini.jpg">> </div> </div> <<backend>> <<set $hidenav = 0>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<dialog "You">>That bed is calling me. <</dialog>> <div class="button-row"> <<set $location = "bedroom">> <<regButton "sleep" "Sleep">> <<regButton "home" "Leave">> <<regButton "manage-stats" "Manage Stats">> <<regButton "manage-skills" "Manage Skills">> </div> $line <div class="button-row"> <<imgButton "school" "img/neon-buttons/school.jpg">> <<imgButton "livingroom" "img/neon-buttons/living.png">> <<imgButton "alley" "img/neon-buttons/alley.jpg">> <<imgButton "residential" "img/neon-buttons/residential-area.jpg">> <<imgButton "business-area" "img/neon-buttons/business-area.jpg">> </div> </div> <<backend>>[[manage-stats]][[sleep]] <<set $hidenav = 0>> <</backend>>
<<bg "city">> <div class="content-panel"> <<dialog "You">>Who should I visit? <</dialog>> $line <div class="button-row"> <<visit "erika" "#4c00ff" "#4c00ff" "#4c00ff" "erika-room">> <<visit "miku" "#4c00ff" "#4c00ff" "#4c00ff" "miku-home">> </div> </div> <<backend>> <<set $hidenav = 0>> <</backend>>
<<bg "uncle-house" $hour>> <div class="content-panel"> <<dialog "Uncle">>You're here. <</dialog>> <div class="button-row"> </div> $line <div class="button-row"> <<imgButton "bedroom" "img/neon-buttons/bedroom.jpg">> <<imgButton "alley" "img/neon-buttons/alley.jpg">> </div> </div> <<backend>>[[skills]][[livingroom]][[kitchen]] <<set $hidenav = 0>> <</backend>>
<<bg "alley">> <div class="content-panel"> <<dialog "You">>It smells like piss. <</dialog>> <div class="button-row"> </div> $line <div class="button-row"> <<imgButton "home" "img/neon-buttons/home.jpg">> <<imgButton "school" "img/neon-buttons/school.jpg">> <<imgButton "residential" "img/neon-buttons/residential-area.jpg">> <<imgButton "business-area" "img/neon-buttons/business-area.jpg">> <<imgButton "park" "img/neon-buttons/park.jpg">> </div> </div> <<backend>>[[park]][[player-guide]][[girls]] <<set $hidenav = 0>> <</backend>>
<<bg "business-area" $hour>> <div class="content-panel"> <<dialog "You">>What should I do here? <</dialog>> <div class="button-row"> <<set $location = "business-area">> <<include "quests">> </div> $line <div class="button-row"> <<imgButton "residential" "img/neon-buttons/residential-area.jpg">> <<imgButton "alley" "img/neon-buttons/alley.jpg">> <<imgButton "hospital" "img/neon-buttons/hospital.jpg">> <<imgButton "konbini" "img/neon-buttons/konbini.jpg">> </div> </div> <<backend>>[[cafe]][[hospital]][[konbini]] <<set $hidenav = 0>> <</backend>>
<<bg "campus" $hour>> <div class="content-panel"> <<dialog "You">>Aoba High. <</dialog>> <div class="button-row"> <<set $location = "school">> <<include "quests">> </div> $line <div class="button-row"> <<imgButton "classroom" "img/neon-buttons/classroom.jpg">> <<imgButton "council" "img/neon-buttons/council-room.jpg">> <<imgButton "faculty" "img/neon-buttons/faculty.jpg">> <<imgButton "track" "img/neon-buttons/trackfield.jpg">> <<imgButton "rooftop" "img/neon-buttons/rooftop.jpg">> <<imgButton "business-area" "img/neon-buttons/business-area.jpg">> <<imgButton "park" "img/neon-buttons/park.jpg">> </div> </div> <<backend>>[[rooftop]] <<set $hidenav = 0>> <</backend>>
<<bg "track-field" $hour>> <div class="content-panel"> <<dialog "You">>It's so hot here. <</dialog>> <div class="button-row"> <<if $player.ep >= 50 && $hour < 19>><<regButton "run-track" "Run 50⚡">><</if>> <<regButton "school" "Leave">> </div> $line <div class="button-row"> <<imgButton "classroom" "img/neon-buttons/classroom.jpg">> <<imgButton "council" "img/neon-buttons/council-room.jpg">> <<imgButton "faculty" "img/neon-buttons/faculty.jpg">> <<imgButton "rooftop" "img/neon-buttons/rooftop.jpg">> </div> </div> <<backend>>[[run-track]] <<set $hidenav = 0>> <</backend>>
<<backend>> <<include "class-firsts">> <<set $currentClass = "no-class">> <<if $schoolDay && $hour < 17>> <<set $currentClass = "shizu-class">> <<if !$shizu.met>> <<goto "school-intro">>[[school-intro]] <</if>> <</if>> <</backend>><<bg "classroom">> <div class="content-panel"> <<include $currentClass>> <div class="button-row"> <<set $location = "classroom">> <<include "quests">> <<if $schoolDay && $hour < 17 && $hour != 12>> <<regButton "study-hour" "Study for one hour">> <<if $hour < 12>><<regButton "study-break" "Study until lunch break">><</if>> <<regButton "end-class" "Study until end of class">> <</if>> <<regButton "school" "Leave">> </div><<if $schoolDay && $hour < 17>> $line <div class="button-row"> /*<<visit "anzu" "#ff004c" "#ff004c" "#ff004c" "anzu-class" 80>>*/ <<visit "emi" "#ff004c" "#ff004c" "#ff004c" "emi-class" 80>> <<visit "haru" "#ff004c" "#ff004c" "#ff004c" "haru-class" 80>> <<visit "rio" "#ff004c" "#ff004c" "#ff004c" "rio-class" 80>> <<visit "shiori" "#ff004c" "#ff004c" "#ff004c" "shiori-class" 80>> </div> <</if>></div> <<backend>>[[end-class]][[study-hour]][[study-break]][[quests]] <<set $hidenav = 0>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<if $hour == 17 && $haru.quest >= 3>> <<vid "haru/haru4/haru4-1">> <<dialog "You">>Haru's here. <</dialog>><<else>><<dialog "You">>There's no one here. <</dialog>><</if>> <div class="button-row"> <<set $location = "council">> <<include "quests">> <<regButton "school" "Leave">> </div> </div> <<backend>> <<set $hidenav = 0>> <</backend>>
<<bg "faculty">> <div class="content-panel"> <<dialog "You">>There are a lot of new teachers. <</dialog>> <div class="button-row"> <<regButton "school" "Leave">> </div> </div> <<backend>> <<set $hidenav = 0>> <</backend>>
<<bg "cafe" $hour>> <div class="content-panel"> <<dialog "You" "Yawning">>I could use some caffeine. <</dialog>> <div class="button-row"> <<regButton "business-area" "Leave">> </div> </div> <<backend>> <<set $hidenav = 0>> <</backend>>
<<backend>> <<if !$akane.met>> <<goto "akane-intro">> <</if>> <</backend>><<bg "hospital-int">> <div class="content-panel"> <<dialog "You">>I sent a lot of idiots here... <</dialog>> <div class="button-row"> <<regButton "business-area" "Leave">> </div> $line <div class="button-row"> <<visit "akane" "#5400C9" "#5400C9" "#4c00ff" "akane-office">> </div> </div> <<backend>>[[akane-office]] <<set $hidenav = 0>> <</backend>>
<<backend>> <<if $hour == 20 && $yuki.social == 4 && $yuki.quest == 0>> <<goto "yuki1-1">> <</if>> <<if $hour == 12 && $yuki.social == 8 && $dayIndex >= $yuki.day && $yuki.quest == 3 && $player.rank <= 2>> <<goto "yuki-aph-1">> <</if>> <<if $hour == 20 && $yuki.social == 9 && $yuki.quest == 3>> <<goto "yuki4-1">> <</if>> <</backend>><<bg "konbini-int">> <div class="content-panel"><<if $hour >= 11 && $hour < 20>> <<vid "misc/konbini">><</if>> <<dialog "You">>Ahh~ I can almost feel the energy drinks calling me. <</dialog>> <div class="button-row"> <<set $location = "konbini">> <<include "quests">> <<buy "Energy Drink" 20>> <<regButton "business-area" "Leave">> </div> </div> <<backend>>[[haru-quests]] <<set $hidenav = 0>> <</backend>>
<<backend>> <<set $pickfight = "Pick a Fight (Lvl "+ $parkRange + "-" + ($parkRange + 4) + ")">> <<set $rankPark = "Challenge Park Boss (Lvl " + ($parkRange + 4) + ")">> <</backend>><<bg "park" $hour>> <div class="content-panel"> <<dialog "You">>Ah. The battlefield. <</dialog>><<if !$akane.met>> Visit the hospital to unlock fighting in the park.<</if>> <div class="button-row"> <<if $player.ep >= 50 && $hour < 19>><<regButton "workout" "Workout 50⚡">><</if>> <<set $location = "park">> <<include "quests">> <<if $hour < 23 && $akane.met>> <<if $player.level >= $parkRange + 4 && $parkRange + 4 < 50>> <<regButton "park2-battlecrud" "Challenge Park Boss">><</if>> <<regButton "park-battlecrud" $pickfight>><</if>> </div> $line <div class="button-row"> <<imgButton "alley" "img/neon-buttons/alley.jpg">> <<imgButton "school" "img/neon-buttons/school.jpg">> <<imgButton "residential" "img/neon-buttons/residential-area.jpg">> </div> </div> <<backend>>[[workout]][[park2-battlecrud]] <<set $hidenav = 0>> <</backend>>
<<bg "rooftop" $hour>> <div class="content-panel"> <<dialog "You">>Time to relax~ <</dialog>><<if !$akane.met && $emi.quest >= 4>> Visit the hospital to unlock combat rankings.<</if>> <div class="button-row"> <<set $location = "rooftop">> <<include "quests">> <<regButton "school" "Leave">> </div> </div> <<backend>>[[rank5-battlecrud]][[rank4-battlecrud]][[rank3-battlecrud]][[rank2-battlecrud]] <<set $hidenav = 0>> <</backend>>
<<bg "alley">> <div class="content-panel"> <h1><<glow "white" "0.5px yellow" "12px red" "25">>Characters<</glow>></h1><div class="id-row"> <<guideButton "akane">> <<guideButton "anzu">> <<guideButton "emi">> <<guideButton "haru">> <<guideButton "miku">> <<guideButton "nirei">> <<guideButton "orie">> <<guideButton "rio">> <<guideButton "shiori">> <<guideButton "shizu">> <<guideButton "yuki">> <<guideButton "you">> </div> <<include "gallery">> <div class="button-row"> <<regButton "bedroom" "Back to the Bedroom">> </div> </div> <<backend>> <<set $hidenav = 0>> <<set $gallery = false>> <</backend>>
<<backend>> <<set $shinguide = "Go to school.">> <<if $shizu.met>> <<set $shinguide = "Figure out the leadership in Aoba.">> <</if>> <<if $emi.quest == 2 || $emi.quide == 3>> <<set $shinguide = "Progress your relationship with Yamane Emi.">> <</if>> <<if $emi.quest == 4>> <<set $shinguide = "Participate in the ranking system at the school rooftop. (Ranker battles happen between 7AM and 7PM)">> <</if>> <<if $player.rank < 25>> <<set $shinguide = "Reach Rank 5.">> <</if>> <<if $player.rank <= 5>> <<set $shinguide = "Progress your relationship with Shizu to unlock fights against the Big Four.">> <</if>> <<if $player.rank == 2>> <<set $shinguide = "That's it for this version..">> <</if>> <</backend>><div style="margin: 0 auto;">$shinguide</div>
<<backend>> <<set $guideBool = {}>> <<set $guideBool.rio = $rioBool>> <<set $guideBool.anzu = $anzuBool>> <<set $guideBool.orie = $orieBool>> <<set $guideBool.nirei = $nireiBool>> <<set $guideBool.shiori = $shioriBool>> <<set $guideBool.shizu = $shizuBool>> <<set $guideBool.yuki = $yukiBool>> <<set $guideBool.haru = $haruBool>> <<set $guideBool.asa = $asaBool>> <<set $guideBool.miku = $mikuBool>> <<set $guideBool.emi = $emiBool>> <<set $guideBool.akane = $akaneBool>> <<set $girls = Object.keys($guideBool)>> <<set $shown = false>> <<for _name range $girls>> <<if $guideBool[_name]>><<set $shown = true>><</if>> <</for>> <</backend>><<for _name range $girls>><<guide _name $guideBool[_name]>><</for>><<if !$shown>>That's it for this version.<</if>>
<<set $punch = {lvl: 1, dmg: 5, ep: 4, acc: 90}>> <<set $stall = {lvl: 0, block: 10, ep: 10}>> <<set $guts = {lvl: 1, charge: 0, ep: 3}>> [[stall]][[punch]][[guts]][[manage-skills]]
<<backend>> <<set $akaneguide = "Visit the hospital.">> <<if $akane.met>> <<set $akaneguide = "Win a fight in the park at night..">> <</if>> <<if $akane.sick>> <<set $akaneguide = "Get a check up from Akane the next day.">> <</if>> <<if $akane.quest == 1>> <<set $akaneguide = "Come back the next day.">> <</if>> <</backend>> <div style="display: flex; flex-direction: column; align-items: flex-start; margin-top: -30px;"><span style="font-weight: bold; text-shadow: 0 0 5px rgba(255, 0, 64, 1); -webkit-text-stroke: 0.5px rgba(255, 0, 64, 1);">Yoshioka Akane</span> <div style="display: flex; align-items: center; margin-top: -10px;"> <img src="img/avatars/akane-01.png" width="15%" style="box-shadow: 0 0 5px rgba(255, 0, 64, 1); border-radius: 8px; margin-right: 10px;"> <span>$akaneguide</span></div> </div>
<<set $anzuguide = "Talk to her in class.">><<backend>> <</backend>> <div style="display: flex; flex-direction: column; align-items: flex-start; margin-top: -30px;"><span style="font-weight: bold; text-shadow: 0 0 5px orangered; -webkit-text-stroke: 0.5px orangered;">Kamiya Anzu</span> <div style="display: flex; align-items: center; margin-top: -10px;"> <img src="img/avatars/anzu.jpg" width="15%" style="box-shadow: 0 0 5px orangered; border-radius: 8px; margin-right: 10px;"> <span>$anzuguide</span></div> </div>
<<set $asaguide = "Nothing.">><<backend>> <</backend>> <div style="display: flex; flex-direction: column; align-items: flex-start; margin-top: -30px;"><span style="font-weight: bold; text-shadow: 0 0 5px limegreen; -webkit-text-stroke: 0.5px cyan;">Utano Asa</span> <div style="display: flex; align-items: center; margin-top: -10px;"> <img src="img/avatars/asa.jpg" width="15%" style="box-shadow: 0 0 5px cyan; border-radius: 8px; margin-right: 10px;"> <span>$asaguide</span></div> </div>
<<set $emiguide = "Talk to her in class.">><<backend>> <<if $emi.met>> <<set $emiguide = "Win at least five(5) fights.">> <</if>> <<if $wins >= 5>> <<set $emiguide = "Interact with her at school.">> <</if>> <<if $emi.quest == 1>> <<set $emiguide = "Keep interacting with her.">> <</if>> <<if $emi.social == 3>> <<set $emiguide = "Someone is waiting for you in front of the school.">> <<if !$rio.met>> <<set $emiguide = "Interact with Higuchi Rio.">> <</if>> <</if>> <<if $emi.quest == 2>> <<set $emiguide = "Meet Izaki at the park after 5PM. Don't be late.">> <</if>> <<if $emi.quest == 3>> <<set $emiguide = "Go to the classroom during lunch.">> <</if>> <</backend>> <div style="display: flex; flex-direction: column; align-items: flex-start; margin-top: -30px;"><span style="font-weight: bold; text-shadow: 0 0 5px #FFEF78; -webkit-text-stroke: 0.5px #FFCE27;">Yamane Emi</span> <div style="display: flex; align-items: center; margin-top: -10px;"> <img src="img/avatars/emi-01.png" width="15%" style="box-shadow: 0 0 5px #FFCE27; border-radius: 8px; margin-right: 10px;"> <span>$emiguide</span></div> </div>
<<set $haruguide = "Talk to her in class.">><<backend>> <<if $haru.met>> <<set $haruguide = "Loosen her up a bit.">> <</if>> <<if $haru.social == 2>> <<set $haruguide = "She's loosening up. Break the ice further by buying her breakfast. ($10)">> <</if>> <<if $haru.social == 3>> <<set $haruguide = "Give her the breakfast. (Morning)">> <</if>> <<if $haru.social == 4>> <<set $haruguide = "Attend class and give her a hand.">> <</if>> <<if $haru.quest == 1>> <<set $haruguide = "The ice is now completely broken. Flirt with her whenever you can.">> <</if>> <<if $haru.social == 8>> <<set $haruguide = "Go to the roof during lunch break.">> <</if>> <<if $haru.quest == 2 && $haru.social == 8>> <<set $haruguide = "Meet her at the classroom after class. (5PM)">> <</if>> <<if $haru.quest == 2 && $haru.social == 9>> <<set $haruguide = "Have another study session.">> <</if>> <<if $haru.quest == 2 && $haru.social == 10>> <<set $haruguide = "Check up on her in class.">> <</if>> <<if $haru.quest == 2 && $haru.social == 11>> <<set $haruguide = "Try again the next day. (After class)">> <</if>> <<if $haru.quest == 3 && !$haru.study>> <<set $haruguide = "Ask her for another study session.">> <</if>> <<if $haru.quest == 3 && $haru.study>> <<set $haruguide = "Get 25 points in intelligence then come back to the Council Room at 5PM the next day.">> <</if>> <</backend>> <div style="display: flex; flex-direction: column; align-items: flex-start; margin-top: -30px;"><span style="font-weight: bold; text-shadow: 0 0 5px cyan; -webkit-text-stroke: 0.5px cyan;">Suzuki Haru</span> <div style="display: flex; align-items: center; margin-top: -10px;"> <img src="img/avatars/haru-student-01.png" width="15%" style="box-shadow: 0 0 5px cyan; border-radius: 8px; margin-right: 10px;"> <span>$haruguide</span></div> </div>
<<set $shizuguide = "Go to her class. (8AM)">><<backend>> <</backend>> <div style="display: flex; flex-direction: column; align-items: flex-start; margin-top: -30px;"><span style="font-weight: bold; text-shadow: 0 0 5px rgba(255, 0, 64, 1); -webkit-text-stroke: 0.5px rgba(255, 0, 64, 1);">Noguchi Shizu</span> <div style="display: flex; align-items: center; margin-top: -10px;"> <img src="img/avatars/shizu.jpg" width="15%" style="box-shadow: 0 0 5px rgba(255, 0, 64, 1); border-radius: 8px; margin-right: 10px;"> <span>$shizuguide</span></div> </div>
<<set $nireiguide = "Visit her. (Weekends and past 5PM on weekdays.)">><<backend>> <<if $nirei.met>> <<set $nireiguide = "Try to get Shiori to talk to her.">> <</if>> [[nirei-home]] <</backend>> <div style="display: flex; flex-direction: column; align-items: flex-start; margin-top: -30px;"><span style="font-weight: bold; text-shadow: 0 0 5px #ff2222; -webkit-text-stroke: 0.5px #ff2222;">Kanna Nirei</span> <div style="display: flex; align-items: center; margin-top: -10px;"> <img src="img/avatars/nirei.jpg" width="15%" style="box-shadow: 0 0 5px #ff2222; border-radius: 8px; margin-right: 10px;"> <span>$nireiguide</span></div> </div>
<<set $shizuguide = "Go to her class. (8AM)">><<backend>> <</backend>> <div style="display: flex; flex-direction: column; align-items: flex-start; margin-top: -30px;"><span style="font-weight: bold; text-shadow: 0 0 5px rgba(255, 0, 64, 1); -webkit-text-stroke: 0.5px rgba(255, 0, 64, 1);">Noguchi Shizu</span> <div style="display: flex; align-items: center; margin-top: -10px;"> <img src="img/avatars/shizu.jpg" width="15%" style="box-shadow: 0 0 5px rgba(255, 0, 64, 1); border-radius: 8px; margin-right: 10px;"> <span>$shizuguide</span></div> </div>
<<backend>> <<set $rioguide = "Talk to her in class.">> <<if $rio.met>> <<set $rioguide = "Progress your relationship with Emi.">> <</if>> <<if $emi.quest >= 3>> <<set $rioguide = "Thank Rio for warning you about Izaki. Make sure you have at least $500.">> <</if>> <</backend>> <div style="display: flex; flex-direction: column; align-items: flex-start; margin-top: -30px;"><span style="font-weight: bold; text-shadow: 0 0 5px orangered; -webkit-text-stroke: 0.5px magenta;">Higuchi Rio</span> <div style="display: flex; align-items: center; margin-top: -10px;"> <img src="img/avatars/rio-student-01.png" width="15%" style="box-shadow: 0 0 5px magenta; border-radius: 8px; margin-right: 10px;"> <span>$rioguide</span></div> </div>
<<set $shioriguide = "Talk to her in class.">><<backend>> <<if $shiori.met>> <<set $shioriguide = "Follow her around at the Business Area on weekend mornings.">> <</if>> <<if $teachersMet < 9 && $shiori.met>> <<set $shioriguide = "Meet all of the teachers.">> <</if>> <<if !$nirei.met && $shiori.met>> <<set $shioriguide = "Visit Nirei.">> <</if>> [[shiori-quests]] <</backend>> <div style="display: flex; flex-direction: column; align-items: flex-start; margin-top: -30px;"><span style="font-weight: bold; text-shadow: 0 0 5px red; -webkit-text-stroke: 0.5px red;">Kanna Shiori</span> <div style="display: flex; align-items: center; margin-top: -10px;"> <img src="img/avatars/shiori.jpg" width="15%" style="box-shadow: 0 0 5px red; border-radius: 8px; margin-right: 10px;"> <span>$shioriguide</span></div> </div>
<<backend>> <<set $shizuguide = "Go to school.">> <<if $shizu.met>> <<set $shizuguide = "Improve your grades. Haru can help you with that.">> <</if>> <<if $haru.quest >= 4>> <<set $shizuguide = "Achieve Rank 5 in the Combat Rankings.">> <</if>> <<if $player.rank == 5 && $haru.quest >= 4>> <<set $shizuguide = "She wants to talk after class.">> <</if>> <<if $player.rank == 5 && $shizu.social == 1>> <<set $shizuguide = "Beat Akagi Toyo.">> <</if>> <<if $player.rank == 4 && $shizu.social == 1>> <<set $shizuguide = "She wants to talk to you again the next day.">> <</if>> <<if $player.rank == 4 && $shizu.social == 2>> <<set $shizuguide = "Beat Kishi Hono.">> <</if>> <<if $player.rank == 3 && $shizu.social == 2>> <<set $shizuguide = "She wants to talk to you again the next day.">> <</if>> <<if $player.rank == 3 && $shizu.social == 3>> <<set $shizuguide = "Beat Kuroki Seiya.">> <</if>> <<if $player.rank == 2 && $shizu.social == 3>> <<set $shizuguide = "She wants to talk to you again the next day.">> <</if>> <<if $shizu.social == 4>> <<set $shizuguide = "Talk to her again.">> <</if>> <<if $shizu.social == 5>> <<set $shizuguide = "Hang out with her again.">> <</if>> <<if $shizu.social == 6>> <<set $shizuguide = "One more hangout.">> <</if>> <</backend>> <div style="display: flex; flex-direction: column; align-items: flex-start; margin-top: -30px;"><span style="font-weight: bold; text-shadow: 0 0 5px pink; -webkit-text-stroke: 0.5px orange;">Noguchi Shizu</span> <div style="display: flex; align-items: center; margin-top: -10px;"> <img src="img/avatars/shizu-01.png" width="15%" style="box-shadow: 0 0 5px orangered; border-radius: 8px; margin-right: 10px;"> <span>$shizuguide</span></div> </div>
<<backend>> <<set $yukiguide = "She's at the Convenience Store. (11AM-8PM)<br>You need $5.">> <<if $yuki.met>> <<set $yukiguide = "Keep flirting with her. You still need $5.">> <</if>> <<if $yuki.social == 4>> <<set $yukiguide = "Run into her when her shift ends at the convenience store. (8PM)">> <</if>> <<if $yuki.quest == 1>> <<set $yukiguide = "You can find her at the park at around 10PM.">> <</if>> <<if $yuki.quest == 2>> <<set $yukiguide = "Keep availing her services at night.">> <</if>> <<if $yuki.quest == 3>> <<if $player.rank <= 2>> <<if $yuki.social == 8>> <<set $yukiguide = "Visit her during lunch this time. (12PM)">> <</if>> <<if $yuki.social == 9>> <<set $yukiguide = "Visit her after her shift ends. (8PM)">> <</if>> <<else>> <<set $yukiguide = "Achieve Rank 2 in the Combat Rankings.">> <</if>> <</if>> <</backend>> <div style="display: flex; flex-direction: column; align-items: flex-start; margin-top: -30px;"><span style="font-weight: bold; text-shadow: 0 0 5px #fbb586; -webkit-text-stroke: 0.5px #C6FFDD;">Obara Yuki</span> <div style="display: flex; align-items: center; margin-top: -10px;"> <img src="img/avatars/yuki-01.png" width="15%" style="box-shadow: 0 0 5px #fbb586; border-radius: 8px; margin-right: 10px;"> <span>$yukiguide</span></div> </div>
<<if $day != "Saturday" && $day != "Sunday">> <<if $shizu.met == false && $hour == 8 && ($day == "Monday" || $day == "Friday")>> <<goto "shizu-intro1">> <</if>> <<if $ruka.met == false && $hour == 8 && $day != "Monday" && $day != "Friday">> <<goto "ruka-intro1">> <</if>> <<if $hinata.met == false && $hour == 9>> <<goto "hinata-intro1">> <</if>> <<if $hibari.met == false && $hour == 10>> <<goto "hibari-intro1">> <</if>> <<if $nemu.met == false && $hour == 11>> <<goto "nemu-intro1">> <</if>> <<if $mirai.met == false && $hour == 13>> <<goto "mirai-intro1">> <</if>> <<if $yui.met == false && $hour == 14>> <<goto "yui-intro1">> <</if>> <<if $kaguya.met == false && $hour == 15>> <<goto "kaguya-intro1">> <</if>> <<if $kiriko.met == false && $hour == 16>> <<goto "kiriko-intro1">> <</if>> <</if>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Shizu">>$player.lastname. Can we talk for a bit? <</dialog>> <<dialog "You">>Of course, Miss Noguchi. <</dialog>> <<dialog "Shizu">>Don't be too formal. Miss Shizu is fine... <</dialog>> <div class="button-row"> <<regButton "shizu-intro1-2" "Continue">> </div> </div> <<backend>>[[shizu-intro1-2]] <<set $hidenav = 1>> <</backend>>
<h1><<glow "white" "0.5px yellow" "12px red" "25">>Characters<</glow>></h1> <<include $gprofile>> <<backend>>[[gallery-crud]][[player-gallery]] <</backend>>
<<dialog "Akane">>I'm your personal doctor.<</dialog>> <div class="button-row gal-row" style="position: relative; top: -10px;"> <<set _unlocked = $akane.quest >= 1>> <<galleryCard "vids/akane/akane1/tj1.mp4" _unlocked "First Check Up" "check-up1" "Event 1">> <<set _unlocked = $akane.quest >= 2>> <<galleryCard "vids/akane/akane2/misb3.mp4" _unlocked "Second Check Up" "check-up2" "Event 2">> </div>
Nothing yet...
Nothing yet...
<<dialog "Emi">>I'm you're classmate.<</dialog>> <div class="button-row gal-row" style="position: relative; top: -10px;"> <<set _unlocked = $emi.quest >= 3>> <<galleryCard "vids/emi/emi3/emi3-17.mp4" _unlocked "Blackmail" "emi3-win" "Event 1">> <<set _unlocked = $emi.quest >= 4>> <<galleryCard "vids/emi/emi4/emi4-hard1.mp4" _unlocked "After Class" "emi3-win" "Event 2">> </div>
<<dialog "Haru">>I'm the class representative.<</dialog>> <div class="button-row gal-row" style="position: relative; top: -10px;"> <<set _unlocked = $haru.quest >= 3>> <<galleryCard "vids/haru/haru3/haru-mis3.mp4" _unlocked "First Time" "haru3-17" "Event 1">> </div>
<<dialog "Miku">>I'm your neighbor.<</dialog>> <div class="button-row gal-row" style="position: relative; top: -10px;"> Nothing yet... </div>
Nothing yet...
Nothing yet...
<<dialog "Rio">>I'm your classmate.<</dialog>> <div class="button-row gal-row" style="position: relative; top: -10px;"> <<set _unlocked = $rio.quest >= 1>> <<galleryCard "vids/rio/rio2/rio2-mis3.mp4" _unlocked "Escort Service" "rio2-grope" "Event 1">> </div>
<<dialog "Shiori">>I'm your classmate.<</dialog>> <div class="button-row gal-row" style="position: relative; top: -10px;"> Nothing yet... </div>
<<dialog "Shizu">>I'm your teacher.<</dialog>> <div class="button-row gal-row" style="position: relative; top: -10px;"> <<set _unlocked = $shizu.quest >= 1>> <<galleryCard "vids/shizu/shizu1/shizu1-cow-a2.mp4" _unlocked "After Class" "shizu1-1" "Event 1">> </div>
<<dialog "Yuki">>I'm the cashier at the Convenience Store.<</dialog>> <div class="button-row gal-row" style="position: relative; top: -10px;"> <<set _unlocked = $yuki.social >= 7>> <<galleryCard "vids/yuki/yuki3/yuki3-3.mp4" _unlocked "Better than making out" "yuki-intro7-1" "Event 1">> <<set _unlocked = $yuki.social >= 8>> <<galleryCard "vids/yuki/yuki3/yuki3-7.mp4" _unlocked "Anything but You" "yuki-intro8-1" "Event 2">> <<set _unlocked = $yuki.quest >= 3>> <<galleryCard "vids/yuki/yuki3/yuki3-22.mp4" _unlocked "Paying for Sex" "yuki3-1" "Event 3">> <<set _unlocked = $yuki.social >= 9>> <<galleryCard "vids/yuki/aph/hard1.mp4" _unlocked "Honey Pack" "yuki-aph-1" "Event 4">> </div>
<<if !$gallery>> <<set $gallery = true>> <<set $hidenav = 1>> <<goto $goto>> <<else>> <<goto "characters">> <</if>>
Nothing yet...
<<backend>> <<if $haru.quest <= 1>> <<if $haru.day <= $dayIndex>> <<if $haru.social == 0>> <<goto "haru-intro2">> <<elseif $haru.social == 1>> <<goto "haru-intro3">> <<elseif $haru.social == 2>> <<goto "haru-intro4">> <<elseif $haru.social == 3 && $daystate == "Morning">> <<goto "haru-intro5">> <<elseif $haru.social == 5>> <<goto "haru-intro6">> <<elseif $haru.social == 6>> <<goto "haru-intro7">> <<elseif $haru.social == 7>> <<goto "haru-intro8">> <</if>> <<else>> <<goto "haru-ignore">>[[haru-ignore]] <</if>> <</if>> <<if $haru.social == 10>> <<goto "haru-intro9">> <</if>> <</backend>><<bg "classroom">> <div class="content-panel"> <<vid "haru/haru-class">> <<dialog "Haru">>Yes? Do you need help? <</dialog>> <div class="button-row"> <<regButton "classroom" "Nevermind">> </div> </div> <<backend>> <<set $hidenav = 1>> <</backend>>
<<bg "hospital-int">> <div class="content-panel"> <<dialog "Akane">>Oh! An Aoba High student! <</dialog>> <<dialog "You" "Internally">>Woah. She's pretty cute. <</dialog>> <<dialog "Akane" "Approaching">>$player.lastname $player.name! It's you! Do you remember me? <</dialog>> <<dialog "You" "Internally">>Uh oh. <</dialog>> <<dialog "You">>N-no. I'm sorry. <</dialog>> <<dialog "Akane" "Disappointed">>Ah. Well, let me reintroduce myself. My name is Yoshioka Akane. I'm your uncle's personal doctor. <</dialog>> <<dialog "You">>Akane... Nope. I'm sure I would have remembered you if we've met before... <</dialog>> <<dialog "Akane">>Sir Hideo has already informed me that you'd be living here. If you ever get injured due to your... activities, come visit me. I won't let a member of the $player.lastname family wait in line! <</dialog>> <<dialog "You">>Oh. So you know about the family business. <</dialog>> <<dialog "Akane">>Yes. Don't worry! I won't charge you when you come visit. Well... Except for the medicine. Those aren't mine to give away. <</dialog>> <<dialog "You">>Fixing me up when I'm bear is already a great help. Thank you! <</dialog>> <<dialog "Akane">>If you ever need Health Tonics, come visit me in my office, okay? <</dialog>> <<dialog "You">>Okay! <</dialog>> <div class="button-row"> <<regButton "hospital" "End">> </div> </div> <<backend>>[[akane-office]] <<time 0 1>> <<set $akane.met = true>> <<set $hidenav = 0>> <</backend>>
<<backend>><<if $anzu.met == false>> [[anzu-intro]]<<goto "anzu-intro">> <</if>> <</backend>><<bg "classroom">> <div class="content-panel"> <<dialog "Anzu">>Do you need anything, darlin'? <</dialog>> <<dialog "You">>Hmmm... <</dialog>> <div class="button-row"> <<regButton "classroom" "Nevermind">> </div> </div> <<backend>> <<set $hidenav = 0>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>... <</dialog>> <<dialog "Shiori">>... <</dialog>> <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>> <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <img src="img/chars/shiori.jpg" style="width: 50%;"> <<dialog "You" "Internally">>Shiori and I never dated, but she was definitely in love with me... She caught me and Nirei on a date... She must hate me now... <</dialog>> <<dialog "You">>Shiori... <</dialog>> <<dialog "Shiori" "Tired">>... <</dialog>> <<dialog "You">>Are you... okay? <</dialog>> <<dialog "Shiori" "Tired">>...Yes. I've just been... working nonstop. Gotta keep myself busy... <</dialog>> <<dialog "You">>...I'm so-- <</dialog>> <<dialog "Shiori" "Tired">>Don't. Just... don't. It's not like we were dating... <</dialog>> <<dialog "You">>... <</dialog>> <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>> <<time 0 1>> <<set $shiori.met = true>> <<set $hidenav = 1>> <</backend>>
<<backend>><<if $asa.met == false>> [[asa-intro1]]<<goto "asa-intro1">> <</if>> <</backend>><<bg "classroom">> <div class="content-panel"> <<dialog "Asa">>Need something? <</dialog>> <div class="button-row"> <<regButton "classroom" "Nevermind">> </div> </div> <<backend>> <<set $hidenav = 0>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <img src="img/chars/asa.jpg" style="width: 50%;"> <<dialog "You" "Internally">>Utano Asa. Sai Kyogaku's childhood friend. She helped me find the secrets to the Iron Fever and got kidnapped by the Yamaguchi Clan because of it. Then, she had to witness her childhood friend die. She probably... blames me for that. <</dialog>> <<dialog "You">>Good morning! <</dialog>> <<dialog "Asa">>Oh? I guess we're classmates this year. <</dialog>> <<dialog "You">>How are you holding up? <</dialog>> <<dialog "Asa">>I'm... fine. <</dialog>> <<dialog "You">>Um... I just wanted to apologize... I'm the reason why-- <</dialog>> <div class="button-row"> <<regButton "asa-intro2" "She cuts you off">> </div> </div> <<backend>>[[asa-intro2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Asa">>Stop that. It's not your fault. <</dialog>> <<dialog "You">>But, it's me that they wanted. <</dialog>> <<dialog "Asa">>Conceited much? Even if you didn't come here, they still would have targeted that idiot. I don't blame you for anything at all. You'll probably piss me off by constantly apologizing though. <</dialog>> <<dialog "You">>Then let me get you coffee or something sometime. To make it up to you. <</dialog>> <<dialog "Asa" "Smirking">>Ooh. Smooth. Go bother Rio or something. <</dialog>> <<dialog "Asa" "Laughing">>Although... I do need some... ingredients for a potion I'm brewing. <</dialog>> <<dialog "You">>It better not be frog hearts or some bullshit like that. <</dialog>> <<dialog "Asa" "Rolling her eyes">>I guess you just wanted to take me out, huh? To make it up to me my ass. <</dialog>> <<dialog "You">>Fine. Fine. I'll get you ingredients. <</dialog>> <<dialog "Asa">>Cool! I'll write a list! <</dialog>> <<dialog "You">>A-a list... <</dialog>> <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>> <<time 0 1>> <<set $asa.met = true>> <<set $hidenav = 1>> <</backend>>
<<backend>> <<if !$emi.met>> <<goto "emi-intro1">> <</if>> <<if $emi.met && $wins < 5>> [[emi-ignore]]<<goto "emi-ignore">> <</if>> <<if $emi.quest == 1>> <<if $emi.social == 0>> [[emi-intro2]]<<goto "emi-intro2">> <</if>> <<if $emi.social == 1 && $emi.day <= $dayIndex>> [[emi-intro3]]<<goto "emi-intro3">> <</if>> <<if $emi.social == 2 && $emi.day <= $dayIndex>> [[emi-intro4]]<<goto "emi-intro4">> <</if>> <</if>> <<if $emi.quest == 2>> [[emi-taunt]]<<goto "emi-taunt">> <</if>> <<if $emi.quest == 3>><<goto "emi-ignore">> <</if>> <</backend>><<bg "classroom">> <div class="content-panel"> <<vid "emi/emi-class">> <<dialog "Emi">>Hi, $player.name! Do you need something? <</dialog>> <div class="button-row"> <<regButton "classroom" "Nevermind">> </div> </div> <<backend>> <<set $hidenav = 0>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>Hey. My name is $player.name. Nice to mee-- <</dialog>> <<dialog "Emi">>Can you not talk to me, $player.name? I don't associate myself with nerds. <</dialog>> <<dialog "You">>Me? A nerd? <</dialog>> <<dialog "Emi">>You're probably bottom of the rankings... Anyways, stop talking. <</dialog>> <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>> <<time 0 1>> <<set $emi.met = true>> <<set $hidenav = 1>> <</backend>>
<<backend>><<if $rio.met == false>> [[rio-intro1]]<<goto "rio-intro1">> <</if>> <</backend>><<bg "classroom">> <div class="content-panel"> <<dialog "Rio">>Hey~ Wanna like... have some fun? <</dialog>> <div class="button-row"> <<set $location = "rio-class">> <<include "rio-quests">> <<regButton "classroom" "Nevermind">> </div> </div> <<backend>>[[rio-quests]][[rio1-1]] <<set $hidenav = 0>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Rio">>Heyy~ You're like... totally new, right? You're totally cute. I like you~ <</dialog>> <<dialog "You">>Damn. Already confessing? <</dialog>> <<dialog "Rio">>Pfft~ No, silly~ I'm like... totally not into relationships~ You can totally expect to hang out with me a lot though~ <</dialog>> <<dialog "You">>Oh? How so? <</dialog>> <<dialog "Rio">>You're like... not ready yet~ <</dialog>> <<dialog "You">>When will I be ready? <</dialog>> <<dialog "Rio">>When I say so~ By the way~ I like... know totally everything about this school~ Let me know if you like want to know something, okay? <</dialog>> <<dialog "You">>Sure~ <</dialog>> <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>> <<time 0 1>> <<set $rio.met = true>> <<set $hidenav = 1>> <</backend>>
<<set $akaneBool = $akane.quest < 2>> <<set $anzuBool = $anzu.met>> <<set $emiBool = $emi.quest < 4>> <<set $haruBool = $haru.quest < 4>> <<set $mikuBool = $miku.met>> <<set $nireiBool = $nirei.met>> <<set $orieBool = $orie.met>> <<set $rioBool = $rio.quest < 1>> <<set $shioriBool = $shiori.met>> <<set $shizuBool = $shizu.quest < 1>> <<set $yukiBool = $yuki.quest < 4>>
<<dialog "Shizu">>Okay, class... <</dialog>> <<dialog "You">>... <</dialog>>
<<bg "classroom">> <div class="content-panel"> <img src="img/chars/anzu.jpg" style="width: 50%;"> <<dialog "You" "Internally">>Kamiya Anzu. My childhood friend. Her dad was a member of the $player.lastname Clan but he died in prison... Her mom got addicted to drugs and overdosed. My dad took her and her little sister, Orie, in. That's how they joined the clan. <</dialog>> <<dialog "You">>What's up? <</dialog>> <<dialog "Anzu">>Hey~ Darlin'~ <</dialog>> <<dialog "You">>You really like calling me that, huh? <</dialog>> <<dialog "Anzu">>Heh. "Young Master" can be a bit tiring sometimes. Too long. <</dialog>> <<dialog "You">>How's Orie? <</dialog>> <<dialog "Anzu">>Still an idiot. <</dialog>> <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>> <<time 0 1>> <<set $anzu.met = true>> <<set $hidenav = 1>> <</backend>>
<<dialog "You">>I wanna take a nap. <</dialog>>
<<bg "livingroom" $hour>> <div class="content-panel"> <<dialog "You">>Ah~ Home~ <</dialog>> <div class="button-row"> <<set $location = "livingroom">> <<include "quests">> <<regButton "home" "Leave">> </div> $line <div class="button-row"> <<imgButton "bedroom" "img/neon-buttons/bedroom.jpg">> <<imgButton "kitchen" "img/neon-buttons/kitchen.jpg">> </div> $line <div class="button-row"> <<visit "erika" "#4c00ff" "#4c00ff" "#4c00ff" "erika-room">> </div> </div> <<backend>>[[anzu-room]][[orie-room]] <<set $hidenav = 0>> <</backend>>
<<bg "kitchen" $hour>> <div class="content-panel"> <<dialog "You">>Ah~ Home~ <</dialog>> <div class="button-row"> <<set $location = "kitchen">> <<regButton "home" "Leave">> </div> $line <div class="button-row"> <<imgButton "bedroom" "img/neon-buttons/bedroom.jpg">> <<imgButton "livingroom" "img/neon-buttons/livingroom.jpg">> </div> </div> <<backend>> <<set $hidenav = 0>> <</backend>>
<<bg "girl-room" $hour>> <div class="content-panel"> <<dialog "Anzu">>Need something? <</dialog>> <div class="button-row"> <<regButton "livingroom" "Nevermind">> </div> </div> <<backend>> <</backend>>
<<backend>> /* --- Player Setup --- */ <<set $player.ep -= $punch.ep>> <<set _base = $player.str * $punch.dmg>> <<set _scale = 0.4>> <<set _c = random(10,40)>> <<set _intBonus = 1 + _scale * ($player.int / ($player.int + _c))>> <<set $pdmg = Math.max(1, Math.round(_base * _intBonus))>> /* --- Enemy Action Setup --- */ <<set $eaction = random(1,2)>> <<set $ecomm = "">> /* --- Type Modifiers --- */ <<switch $enemy.type>> <<case "Tank">><<set $pdmg = Math.round($pdmg * 0.9)>> <<case "Grappler">><<set $pdmg = Math.round($pdmg * 1.05)>> <</switch>> /* --- Enemy Action --- */ <<if $eaction == 1>> /* Attack */ <<set $edmg = ($enemy.str * random(4,6))>> <<switch $enemy.type>> <<case "Striker">><<set $edmg = Math.round($edmg * 1.1)>> <<case "Grappler">><<set $edmg = Math.round($edmg * 0.95)>> <</switch>> <<set $ecomm = "The enemy lands an attack that deals " + $edmg + " damage.">> /* Guts absorption */ <<if $guts.charge > 0>> <<set $guts.charge -= 1>> <<set $edmg = Math.round($edmg * (1 - (0.025 + (0.025 $guts.lvl))))>> <<set $ecomm = "The enemy lands an attack that deals " + $edmg + " damage. Your guts absorbed " + Math.round((0.025 +(0.025 * $guts.lvl)) * 100) + "% of the damage.">> <<if $guts.charge == 0>><<set $ecomm += " Your guts wear off.">><</if>> <</if>> <<else>> /* Defend */ <<set $pdmg = Math.round($pdmg * (random(25,75) / 100))>> <<set $edmg = 0>> <<set $ecomm = "The enemy defended and absorbed some of the blow.">> <</if>> /* --- Turn Order --- */ <<if $enemy.agi > $player.agi && $enemy.type != "Tank" && $eaction == 1>> /* Enemy first */ <<set $player.hp = Math.max(0, $player.hp - $edmg)>> <<set $commentary = $ecomm>> <<if $player.hp <= 0>> <<set $commentary += " You get knocked out.">> <<else>> <<if random(0,100) < $punch.acc>> <<set $commentary += " You throw a devastating punch that deals " + $pdmg + " damage to the enemy.">> <<set $enemy.hp = Math.max(0, $enemy.hp - $pdmg)>> <<set $pdialog = either("...", "Heh.")>> <<set $edialog = either("Fuck!", "Th-that almost knocked me out.", "Sh-shit!")>> <<set $emibattle = "N-no! Keep going!">> <<else>> <<set $commentary += " Your punch missed.">> <<set $pdialog = either("Tch.", "Fuck!", "Shit!", "Damn it!")>> <<set $edialog = either("Haha!", "Try harder.", "What are you even trying to hit?")>> <<set $emibattle = "That's it!">> <</if>> <</if>> <<else>> /* Player first */ <<if random(0,100) < $punch.acc>> <<set $commentary = "You throw a devastating punch that deals " + $pdmg + " damage to the enemy. " + $ecomm>> <<set $enemy.hp = Math.max(0, $enemy.hp - $pdmg)>> <<set $pdialog = either("...", "Heh.")>> <<set $edialog = either("Fuck!", "Th-that almost knocked me out.", "Sh-shit!")>> <<set $emibattle = "N-no! Keep going!">> <<else>> <<set $commentary = "Your punch missed.">> <<if $eaction == 2>><<set $ecomm = "">><</if>> <<set $pdialog = either("Tch.", "Fuck!", "Shit!", "Damn it!")>> <<set $edialog = either("Haha!", "Try harder.", "What are you even trying to hit?")>> <<set $emibattle = "That's it!">> <</if>> <<if $enemy.hp > 0>> <<if random(0,100) > 20 || $enemy.type == "Grappler">> <<set $player.hp = Math.max(0, $player.hp - $edmg)>> <<set $commentary += " " + $ecomm>> <<if $player.hp <= 0>><<set $commentary += " You get knocked out.">><</if>> <<else>> <<set $commentary += " The enemy's attack misses.">> <<set $emibattle = "What are you doing!? Hit him!">> <</if>> <<else>> <<set $commentary += " Your punch knocks the enemy down.">> <</if>> <</if>> <<include "battle-result">> [[punch-syntax]] <</backend>>
<<backend>> /* --- Player uses Guts --- */ <<set $player.ep -= $guts.ep>> <<set $guts.charge = 4>> <<set $eaction = random(1,2)>> <<set $ecomm = "">> <<set $pdialog = "Bring it!">> /* --- Enemy Action --- */ <<if $eaction == 1>> Attack /* Enemy has an 80% chance to hit */ <<if random(1,100) <= 80>> <<set $edmg = ($enemy.str * random(4,6))>> <<if $enemy.type == "Striker">> <<set $edmg = Math.round($edmg * 1.1)>> <</if>> <<if $enemy.type == "Grappler">> <<set $edmg = Math.round($edmg * 0.95)>> <</if>> /* Guts absorbs damage */ <<set $guts.charge -= 1>> <<set _absorb = 0.025 + (0.025 * $guts.lvl)>> <<set $edmg = Math.round($edmg * (1 - _absorb))>> <<set $player.hp = Math.max(0, $player.hp - $edmg)>> <<set $edialog = either("S-so tough!", "Wh-what!? That hit was clean though!", "Go down already!")>> <<set $emibattle = "Hit harder, Izaki-kun!">> <<set $ecomm = "The enemy lands an attack that deals " + $edmg + " damage. Your guts absorbed " + Math.round(_absorb * 100) + "% of the damage.">> <<else>> /* Miss */ <<set $edmg = 0>> <<set $ecomm = "The enemy’s attack missed.">> <<set $edialog = either("Damn it!", "Stop squirming around!", "Go down already!")>> <</if>> <<else>> Defend <<set $ecomm = "The enemy took a defensive stance.">> <<set $edialog = either("Attack me already!", "What are you doing!?")>> <</if>> <<set $emibattle = "Punch him. Kick him. I don't care! Just hit him!">> /* --- Commentary --- */ <<set $commentary = "You pumped yourself up. " + $ecomm>> <<if $player.hp <= 0>> <<set $commentary += " The enemy's attack knocks you out.">> <</if>> [[guts-syntax]] <<include "battle-result">> <</backend>>
<<set $enemy = { name: "", type: "", level: 1, hp: 100, ep: 100, maxhp: 100, maxep: 100, str: 0, agi: 0, int: 0}>> <<set $commentary = "">> <<set $enemy.name = "Delinquent " + random(1,5)>> <<set $enemy.level = $parkRange + random(0,4)>> <<set $epoints = $enemy.level * 5>> <<set _base = Math.floor($epoints / 4)>> <<set _remaining = $epoints - (_base * 3)>> <<set $enemy.str = _base>> <<set $enemy.agi = _base>> <<set $enemy.int = _base>> <<for _i = 0; _i < _remaining; _i++>> <<set _r = random(1,3)>> <<switch _r>> <<case 1>><<set $enemy.str += 1>><</case>> <<case 2>><<set $enemy.agi += 1>><</case>> <<case 3>><<set $enemy.int += 1>><</case>> <</switch>> <</for>> <<set $enemy.maxhp = 90 + (10 * $enemy.level) + (2*$enemy.str)>> <<if $enemy.str >= $enemy.agi && $enemy.str >= $enemy.int>> <<set $enemy.type = "Tank">> <<elseif $enemy.agi >= $enemy.str && $enemy.agi >= $enemy.int>> <<set $enemy.type = "Striker">> <<else>> <<set $enemy.type = "Grappler">> <</if>> <<set $enemy.hp = $enemy.maxhp>> <<set $pdialog = "Bring it on!">> <<set $edialog = "You're in the wrong park, outsider.">> <<set $battlePassage = "park">> <<goto "park-battle">>
<<set $useableMoves = 0>><<bg "park" $hour>> <div class="content-panel"> <<print $commentary + "<br>">> <<combat $enemy.name $enemy.level $enemy.type "enemies-reg" $enemy.hp $enemy.ep $enemy.maxhp $enemy.maxep>>$edialog<</combat>> <<combat "You" $player.level "Specialist" "avatars" $player.hp $player.ep $player.maxhp $player.maxep>>$pdialog<</combat>> <div class="button-row"> <<include "battle-options">> </div> </div> <<backend>>[[battle-options]][[rank-battle]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<set _passage = $battlePassage+"-battle">> <<if $enemy.hp <= 0>> <<set _passage = $battlePassage+"-win">>[[park-win]][[park-lose]] <</if>> <<if $player.hp <= 0>> <<set _passage = $battlePassage+"-lose">> <</if>> <<goto _passage>>
<<backend>> <<set $strMetric += 1>> <<set $agiMetric += 1>> <<set $intMetric += 1>> <<set $rewmoney = 5 + ($enemy.level * random(2,5))>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($player.int * random(35,75) * 0.01))>> <<set $player.money = $player.money + $rewmoney>> <</backend>><<bg "park" $hour>> <div class="content-panel"> <<print $commentary>> Park Delinquent gets knocked out. You get $<<print $rewmoney>> and <<print $rewxp>> exp. <div><<exp $rewxp>></div><<if $wins == 0>>Note: When you do activities, like studying, working out or running, your stats get bias when you level up. So, if you do nothing but study, your int stat gets bias when you level up.<</if>> <<if $daystate == "Night" && !$akane.sick && $akane.met>> <<dialog "You" "Panting">>Damn. I don't feel too good. I guess it's too cold tonight. <</dialog>><<set $akane.sick = true>><<set $akane.day = $dayIndex + 1>> <<else>><<dialog "You">>Who's next? <</dialog>><</if>> <div class="button-row"> <<regButton "park" "End">> </div> </div> <<backend>> <<set $hidenav = 0>> <<set $wins += 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> $commentary You lost. <<dialog "Akane" "Worried">>Young Master, please be more careful! <</dialog>> <<dialog "You">>Fuck... I can't believe I lost... <</dialog>> <div class="button-row"> <<regButton "hospital" "Leave">> </div> </div> <<backend>> <<time 0 30>> <<set $player.hp = $player.maxhp>> <<set $player.ep = $player.maxep>> <<set $hidenav = 0>> <</backend>>
<<backend>>[[stats]] <<set $tempStats.maxhp = 100 + (($tempStats.level - 1) * 5) + ($tempStats.str * 2)>> <<set $tempStats.maxep = 100 + (($tempStats.level - 1) * 5) + ($tempStats.agi * 2)>> <<set $player.maxhp = 100 + (($player.level - 1) * 5) + ($player.str * 2)>> <<set $player.maxep = 100 + (($player.level - 1) * 5) + ($player.agi * 2)>> <</backend>> <div style="white-space: nowrap; line-height:1; font-size:18px; text-align:center;"><span style="display:block; margin-top:2px;"><<glow "#cfc" "0.5px lime" "8px green" 18>>Money: $<<print $player.money>><</glow>></span> <span style="display:block; font-size:22px; font-weight:bold;"><<glow "#ffa" "0.5px yellow" "8px orange" 24>>Stats<</glow>></span> <span style="display:block; margin-top:2px;"><<glow "#faa" "0.5px #f55" "8px red" 18>>Level <<print $player.level>><</glow>><<if $player.rank < 30>> | <<glow "#aff" "0.5px #5ff" "8px cyan" 18>>Rank <<print $player.rank>><</glow>><</if>></span> </div><<include "stats">><span style="display:flex; justify-content:space-between; margin-top:4px;"> <span><<glow "red" "0.5px red" "8px red">>Health:<</glow>></span> <span><<glow "red" "0.5px red" "8px red">><<print $player.hp>> / <<print $player.maxhp>><<if $player.maxhp < $tempStats.maxhp>><<print ' +' + ($tempStats.maxhp - $player.maxhp)>><</if>><</glow>></span> </span> <span style="display:flex; justify-content:space-between; margin-top:2px;"> <span><<glow "yellow" "0.5px white" "8px yellow">>Energy:<</glow>></span> <span><<glow "yellow" "0.5px white" "8px yellow">><<print $player.ep>> / <<print $player.maxep>><<if $player.maxep < $tempStats.maxep>><<print ' +' + ($tempStats.maxep - $player.maxep)>><</if>><</glow>></span> </span> <<if Object.keys($inventory).length > 0>><<include "inventory">><</if>>
<div style="display: flex; justify-content: center;"><div style="width: 30%; text-align: center;"><<glow "#f55" "0.5px darkred" "8px darkred" 18>><span style="color: #f55;">Strength:</span><</glow>></div><div style="width: 30%"><<glow "#f55" "0.5px darkred" "8px darkred" 18>><span style="color: #f55;"><<print $player.str>><<if $player.str < $tempStats.str>><<print ' +'+($tempStats.str-$player.str)>><</if>></span><</glow>></div></div> <div style="display: flex; justify-content: center;"><div style="width: 30%; text-align: center;"><<glow "white" "0.5px cyan" "8px cyan" 18>><span style="color: #fff;">Intelligence:</span><</glow>></div><div style="width: 30%"><<glow "white" "0.5px cyan" "8px cyan" 18>><span style="color: #fff;"><<print $player.int>><<if $player.int < $tempStats.int>><<print ' +'+($tempStats.int-$player.int)>><</if>></span><</glow>></div></div> <div style="display: flex; justify-content: center;"><div style="width: 30%; text-align: center;"><<glow "#cfc" "0.5px lime" "8px green" 18>><span style="color: #cfc;">Agility:</span><</glow>></div><div style="width: 30%"><<glow "#cfc" "0.5px lime" "8px green" 18>><span style="color: #cfc;"><<print $player.agi>><<if $player.agi < $tempStats.agi>><<print ' +'+($tempStats.agi-$player.agi)>><</if>></span><</glow>></div></div> <<if $tempStats.points > 0>><<glow "white" "0.5px yellow" "8px orange" 16>>You have <<print $tempStats.points>> unspent points.<</glow>><</if>>
<<bg "bedroom">> <div class="content-panel"> <h1 style="font-weight: 500;"><<glow "white" "0.25px white" "2px white" 24>>Character Stats<</glow>></h1> <img src="img/avatars/you-01.png" style="max-width: 40%;"> <h1 style="font-size: 20px;"><<textbox "$player.lastname" $player.lastname>><<textbox "$player.name" $player.name>></h1><h1><<glow "white" "0.65px yellow" "10px red">>Level <<print $player.level>><</glow>></h1><div style="width:60%; margin: 0 auto;"><<glow "white" "0.65px cyan" "10px cyan">>exp: <<print $player.exp>> / <<print getReq($player.level)>><</glow>> <div style="width: 60%; line-height:1.1; margin: 0 auto;"> <h1><<glow "white" "0.5px yellow" "8px orange">>Stats<</glow>></h1> <<backend>> <<set $originalStats = JSON.parse(JSON.stringify($player))>> <<set $tempStats = JSON.parse(JSON.stringify($player))>> <</backend>> <div style="display: flex;"> <div style="width: 60%; text-align: left;"><h1><<glow "#f55" "0.5px red" "8px red">><span style="color: #f55;">Strength:</span><</glow>></h1></div> <div style="width: 10%"><h1><<stat "0.5px red" "8px red" "str">>-<</stat>> </h1></div> <div style="width: 20%"><h1><<glow "#f55" "0.5px red" "8px red">><span id="stat-str" style="color: #f55;"><<print $tempStats.str>></span><</glow>></h1></div> <div style="width: 10%"><h1><<stat "0.5px red" "8px red" "str">>+<</stat>> </h1></div> </div> <div style="display: flex;"> <div style="width: 60%; text-align: left;"><h1><<glow "white" "0.5px cyan" "8px cyan">>Intelligence:<</glow>></h1></div> <div style="width: 10%"><h1><<stat "0.5px cyan" "8px cyan" "int">>-<</stat>> </h1></div> <div style="width: 20%"><h1><<glow "white" "0.5px cyan" "8px cyan">><span id="stat-int"><<print $tempStats.int>></span><</glow>></h1></div> <div style="width: 10%"><h1><<stat "0.5px cyan" "8px cyan" "int">>+<</stat>> </h1></div> </div> <div style="display: flex;"> <div style="width: 60%; text-align: left;"><h1><<glow "#cfc" "0.5px lime" "8px green">><span style="color: #cfc;">Agility:</span><</glow>></h1></div> <div style="width: 10%"><h1><<stat "0.5px lime" "8px green" "agi">>-<</stat>> </h1></div> <div style="width: 20%"><h1><<glow "#cfc" "0.5px lime" "8px green">><span id="stat-agi"><<print $tempStats.agi>></span><</glow>></h1></div> <div style="width: 10%"><h1><<stat "0.5px lime" "8px green" "agi">>+<</stat>> </h1></div> </div> <div style="display: flex;"><div style="width: 90%; text-align: right;"><h1><<glow "white" "0.5px yellow" "8px yellow">>Stat Points:<</glow>></h1></div> <div style="width: 10%"><h1><<glow "white" "0.5px yellow" "8px yellow">><span id="stat-points"><<print $tempStats.points>></span><</glow>></h1></div> </div> <<regButton "stat-crud" "Done">> <<backend>>[[stat-crud]] <</backend>>
<<backend>> <<set $tempStats.maxhp = 100 + (($tempStats.level - 1) * 5) + ($tempStats.str * 2)>> <<set $tempStats.maxep = 100 + (($tempStats.level - 1) * 5) + ($tempStats.agi * 2)>> <<set $tempStats.hp = $tempStats.maxhp - ($player.maxhp - $player.hp)>> <<set $tempStats.ep = $tempStats.maxep - ($player.maxep - $player.ep)>> <<set $player to clone($tempStats)>> <<goto "bedroom">> <</backend>>
<<include "sleep-crud">><<bg "bedroom">> <div class="content-panel"> You doze off. <<dialog "You">>Zzz... <</dialog>> <div class="button-row"> <<regButton "bedroom" "Wake Up">> </div> </div> <<backend>> <<set $hidenav = 0>> <</backend>>
<<backend>> <<set $canGuts = $player.ep >= $guts.ep>> <</backend>> <<regButton "guts" "Guts" $canGuts>>
<<backend>> <<set $canPunch = $player.ep >= $punch.ep>> <<if $canPunch>><<set $useableMoves += 1>><</if>> <</backend>> <<regButton "punch" "Punch" $canPunch>>
<<bg "bedroom">> <div class="content-panel"> <h1 style="font-weight: 500;"><<glow "white" "0.25px white" "2px white" 24>>Skills<</glow>></h1><div class="button-row" style=" display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; font-size: 16px; text-align: center; line-height: 1.3; "> <<set _slotA = $equip.a ? $equip.a.charAt(0).toUpperCase() + $equip.a.slice(1) : "None">> <<set _slotB = $equip.b ? $equip.b.charAt(0).toUpperCase() + $equip.b.slice(1) : "None">> <<set _slotC = $equip.c ? $equip.c.charAt(0).toUpperCase() + $equip.c.slice(1) : "None">> <span> <<glow "yellow" "0.5px orange" "8px orangered" 16>>Slot A:<</glow>> <<regButton "slota-equip" _slotA>> </span> <span> <<glow "red" "0.5px magenta" "8px purple" 16>>Slot B:<</glow>> <<regButton "slotb-equip" _slotB>> </span> <span> <<glow "cyan" "0.5px dodgerblue" "8px blue" 16>>Slot C:<</glow>> <<regButton "slotc-equip" _slotC>> </span> </div> <div style=" display: flex; flex-wrap: wrap; justify-content: center; width: 100%; margin: 0 auto; "> <<include "punch-card">> <<include "guts-card">> <<include "stall-card">> </div> <div style="display: flex;"><div style="width: 80%; text-align: right;"><h1><<glow "white" "0.5px yellow" "8px yellow">>Skill Points:<</glow>></h1></div> <div style="width: 10%"><h1><<glow "white" "0.5px yellow" "8px yellow">><span id="stat-points">$player.sp</span><</glow>></h1></div> </div><<regButton "bedroom" "Done">> <<backend>>[[guts-card]][[punch-card]][[slota-equip]][[slotb-equip]][[slotc-equip]][[slotd-equip]][[equip]] <</backend>>
<div class="skill-card" style=" background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 8px 12px; margin: 10px; display: flex; flex-direction: column; justify-content: space-between; width: 27%; box-shadow: 0 0 6px rgba(255,255,255,0.1); "> <<set $hasSP = $player.sp > 0>><div style="width:100%; text-align:left;"> <<glow "white" "0.5px cyan" "6px cyan" 18>>Guts<</glow>><span style="font-size: 14px;">(Lv. $guts.lvl)</span> </div> <div style="width:100%; text-align:left; font-size:13px; line-height:1.2;"> Reduce the damage of the next four attacks by <<print 5 + Math.max(5, $guts.lvl * 2.5)>>%. </div> <div class="button-row" style="width:100%; display:flex; flex-direction:column; align-items:flex-start; margin-top:auto;"> <div style="font-size:13px;"> <<glow "white" "0.5px yellow" "6px orange" 14>>Cost: $guts.ep ep<</glow>> </div> <div class="button-row"> <<if $guts.lvl >= 10>> <<regButton "manage-skills" "Max" false>> <<elseif $guts.lvl > 0>> <<regButton "guts-upgrade" "Upgrade" $hasSP>> <<else>> <<regButton "guts-upgrade" "Learn" $hasSP>> <</if>> </div> </div> </div>
<div class="skill-card" style=" background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 8px 12px; display: flex; margin: 10px; flex-direction: column; justify-content: space-between; width: 27%; box-shadow: 0 0 6px rgba(255,255,255,0.1); "> <<set $hasSP = $player.sp > 0>><div style="width:100%; text-align:left;"> <<glow "yellow" "0.5px orange" "6px red" 18>>Punch<</glow>><span style="font-size: 14px;">(Lv. $punch.lvl)</span> </div> <div style="width:100%; text-align:left; font-size:13px; line-height:1.2;"> Deals damage that multiplies with your strength.<br> Base Damage: $punch.dmg<br> Accuracy: $punch.acc </div> <div class="button-row" style="width:100%; display:flex; flex-direction:column; align-items:flex-start; margin-top:auto;"> <div style="font-size:13px;"> <<glow "white" "0.5px yellow" "6px orange" 14>>Cost: $punch.ep ep<</glow>> </div> <div class="button-row"> <<if $punch.lvl >= 10>> <<regButton "manage-skills" "Max" false>> <<elseif $punch.lvl > 0>> <<regButton "punch-upgrade" "Upgrade" $hasSP>> <<else>> <<regButton "punch-upgrade" "Learn" $hasSP>> <</if>> </div> </div> </div>
<<set $targetSlot = "a">> <<bg "bedroom">> <div class="content-panel"> <h1 style="font-weight: 500;"> <<glow "white" "0.25px white" "2px white" 24>>Equip for Slot A<</glow>> </h1> <<include "equip">> </div>
<<set $targetSlot = "b">> <<bg "bedroom">> <div class="content-panel"> <h1 style="font-weight: 500;"> <<glow "white" "0.25px white" "2px white" 24>>Equip for Slot B<</glow>> </h1> <<include "equip">> </div>
<<set $targetSlot = "c">> <<bg "bedroom">> <div class="content-panel"> <h1 style="font-weight: 500;"> <<glow "white" "0.25px white" "2px white" 24>>Equip for Slot C<</glow>> </h1> <<include "equip">> </div>
<<set $targetSlot = "d">> <<bg "bedroom">> <div class="content-panel"> <h1 style="font-weight: 500;"> <<glow "white" "0.25px white" "2px white" 24>>Equip for Slot D<</glow>> </h1> <<include "equip">> </div>
<div style=" display: flex; flex-wrap: wrap; justify-content: center; width: 100%; margin: 0 auto; "> <<include "punch-equip">> <<include "guts-equip">> <<if $stall.lvl > 0>><<include "stall-equip">><</if>> </div> <div style="margin-top:20px; text-align:center;"> <<regButton "manage-skills" "Done">> </div> <<backend>>[[struggle]] <</backend>>
<div class="skill-card" style=" background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 10px 16px; margin: 10px; display: flex; flex-direction: column; /* make content stack vertically */ justify-content: space-between; /* pushes button to bottom */ align-items: center; width: 20%; min-height: 180px; /* ensures cards have equal height */ box-shadow: 0 0 6px rgba(255,255,255,0.1); "> <<set $hasSP = $player.sp > 0>> <div style="text-align:center; line-height: 1.2; font-size: 14px;"> <<glow "yellow" "0.5px orange" "6px red" 20>>Punch<</glow>> Deals damage that multiplies your strength. </div> <div class="button-row" style="width: 100%; text-align:center;"> <<regButton "punch-equip-crud" "Equip">> </div> </div> <<backend>> [[punch-equip-crud]][[punch-upgrade]] <</backend>>
<div class="skill-card" style=" background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 10px 16px; margin: 10px; display: flex; flex-direction: column; justify-content: space-between; align-items: center; width: 20%; min-height: 180px; box-shadow: 0 0 6px rgba(255,255,255,0.1); "> <<set $hasSP = $player.sp > 0>> <div style="text-align:center; line-height: 1.2; font-size: 14px;"> <<glow "white" "0.5px cyan" "6px cyan" 20>>Guts<</glow>> Reduce the damage of the next four attacks by <<print 5 + Math.max(5, $guts.lvl * 2.5)>>%. </div> <div class="button-row" style="width: 100%; text-align:center;"> <<regButton "guts-equip-crud" "Equip">> </div> </div> <<backend>> [[guts-equip-crud]][[guts-upgrade]] <</backend>>
<<set _skill = "punch">> <!-- Determine the target slot --> <<set _target = $targetSlot>> <!-- Check if target slot already has a skill --> <<set _existing = $equip[_target]>> <<if _existing isnot "">> <!-- Swap: put the existing skill into the slot that currently has _skill --> <<for _slot range ["a","b","c","d"]>> <<if $equip[_slot] is _skill>> <<set $equip[_slot] = _existing>> <</if>> <</for>> <<else>> <!-- Remove _skill from any other slot --> <<for _slot range ["a","b","c","d"]>> <<if $equip[_slot] is _skill>> <<set $equip[_slot] = "">> <</if>> <</for>> <</if>> <!-- Equip _skill to target slot --> <<set $equip[_target] = _skill>> <<goto "manage-skills">>
<<set _skill = "guts">> <!-- Determine the target slot --> <<set _target = $targetSlot>> <!-- Check if target slot already has a skill --> <<set _existing = $equip[_target]>> <<if _existing isnot "">> <!-- Swap: put the existing skill into the slot that currently has _skill --> <<for _slot range ["a","b","c","d"]>> <<if $equip[_slot] is _skill>> <<set $equip[_slot] = _existing>> <</if>> <</for>> <<else>> <!-- Remove _skill from any other slot --> <<for _slot range ["a","b","c","d"]>> <<if $equip[_slot] is _skill>> <<set $equip[_slot] = "">> <</if>> <</for>> <</if>> <!-- Equip _skill to target slot --> <<set $equip[_target] = _skill>> <<goto "manage-skills">>
<<if $equip.a != "">><<set _a = $equip.a+"-syntax">><<include _a>><</if>> <<if $equip.b != "">><<set _b = $equip.b+"-syntax">><<include _b>><</if>> <<if $equip.c != "">><<set _c = $equip.c+"-syntax">><<include _c>><</if>> <<if $equip.d != "">><<set _d = $equip.d+"-syntax">><<include _d>><</if>> <<if $useableMoves == 0>><<regButton "struggle" "Struggle">><</if>>
<<set $punch.lvl += 1>> <<set $player.sp -= 1>> <<if $punch.lvl == 2>> <<set $punch.dmg = 5>> <<elseif $punch.lvl == 3>> <<set $punch.dmg = 6>> <<elseif $punch.lvl == 4>> <<set $punch.dmg = 7>> <<set $punch.ep = 5>> <<elseif $punch.lvl == 5>> <<set $punch.dmg = 8>> <<set $punch.ep = 5>> <<elseif $punch.lvl == 6>> <<set $punch.dmg = 9>> <<set $punch.ep = 5>> <<elseif $punch.lvl == 7>> <<set $punch.dmg = 10>> <<set $punch.ep = 6>> <<elseif $punch.lvl == 8>> <<set $punch.dmg = 11>> <<set $punch.ep = 6>> <<elseif $punch.lvl == 9>> <<set $punch.dmg = 12>> <<set $punch.ep = 6>> <<elseif $punch.lvl == 10>> <<set $punch.dmg = 13>> <<set $punch.ep = 6>> <</if>> <<goto "manage-skills">>
<<set $guts.lvl += 1>> <<set $player.sp -= 1>> <<if $guts.lvl == 4>> <<set $guts.ep = 5>> <</if>> <<goto "manage-skills">>
<<backend>> /* --- Struggle: risky attack that deals recoil damage --- */ <<set $pdmg = $player.str + $player.agi>> <<set $eaction = random(1,2)>> <<set $ecomm = "">> /* --- Type Modifiers --- */ <<if $enemy.type == "Tank">><<set $pdmg = Math.round($pdmg * 0.9)>><</if>> <<if $enemy.type == "Grappler">><<set $pdmg = Math.round($pdmg * 1.05)>><</if>> /* --- Enemy Action --- */ <<if $eaction == 1>> <<set $edmg = ($enemy.str * 3) + (2 * random(8,10))>> <<if $enemy.type == "Striker">><<set $edmg = Math.round($edmg * 1.1)>><</if>> <<if $enemy.type == "Grappler">><<set $edmg = Math.round($edmg * 0.95)>><</if>> <<set $ecomm = "The enemy lands an attack that deals " + $edmg + " damage.">> <<if $guts.charge > 0>> <<set $guts.charge -= 1>> <<set $edmg = Math.round($edmg * (1 - (0.025 + (0.025 * $guts.lvl))))>> <<set $ecomm = "The enemy lands an attack that deals " + $edmg + " damage. Your guts absorbed " + ((0.025 +(0.025 * $guts.lvl) * 100) + "% of the damage.">> <<if $guts.charge == 0>><<set $ecomm += " Your guts wear off.">><</if>> <</if>> <<else>> <<set $pdmg = Math.round($pdmg * (random(25,75) / 100))>> <<set $edmg = 0>> <<set $ecomm = "The enemy defended and absorbed some of the blow.">> <</if>> /* --- Turn Order --- */ <<if $enemy.agi > $player.agi && $enemy.type != "Tank" && $eaction == 1>> /* Enemy first */ <<set $player.hp = Math.max(0, $player.hp - $edmg)>> <<set $commentary = $ecomm>> <<if $player.hp <= 0>> <<set $commentary += " You get knocked out.">> <<else>> <<set $commentary += " You strain your body to attack, dealing " + $pdmg + " damage to the enemy, but the strain inflicts " + Math.round($pdmg/2) + " recoil damage.">> <<set $enemy.hp = Math.max(0, $enemy.hp - $pdmg)>> <<set $player.hp = Math.max(1, $player.hp - Math.round($pdmg/2))>> <</if>> <<else>> /* Player first */ <<set $commentary = "You strain your body to attack, dealing " + $pdmg + " damage to the enemy, but the strain inflicts " + Math.round($pdmg/2) + " recoil damage.">> <<set $enemy.hp = Math.max(0, $enemy.hp - $pdmg)>> <<set $player.hp = Math.max(1, $player.hp - Math.round($pdmg/2))>> <<if $enemy.hp > 0>> <<if random(0,100) > 20 || $enemy.type == "Grappler">> <<set $player.hp = Math.max(0, $player.hp - $edmg)>> <<set $commentary += " " + $ecomm>> <<if $player.hp <= 0>><<set $commentary += " You get knocked out.">><</if>> <<else>> <<set $commentary += " The enemy's attack misses.">> <</if>> <<else>> <<set $commentary += " Your attack knocks the enemy down.">> <</if>> <</if>> <<include "battle-result">> <</backend>>
<<backend>> /* --- Player EP recover (cap at max) --- */ <<set $player.ep = Math.min($player.maxep, $player.ep + $stall.ep)>> /* --- Setup --- */ <<set $eaction = random(1,2)>> <<set $commentary = "">> <<set $pdialog = either("Huff... Huff...", "I need to take a breather.")>> /* --- If enemy attacks or defends --- */ <<if $eaction == 1>> /* Enemy attempts an attack (80% hit chance) */ <<if random(1,100) <= 80>> /* base damage */ <<set $edmg = ($enemy.str * random(4,6))>> /* type modifiers */ <<switch $enemy.type>> <<case "Striker">><<set $edmg = Math.round($edmg * 1.1)>> <<case "Grappler">><<set $edmg = Math.round($edmg * 0.95)>> <<case "Tank">><<set $edmg = Math.round($edmg * 1.0)>> <</switch>> /* apply Stall reduction (percent) */ <<set _stallFactor = 1 - ($stall.block / 100)>> <<set $edmg = Math.max(0, Math.round($edmg * _stallFactor))>> /* apply Guts if active (consume a charge only on a hit) */ <<set _totalBlockedPercent = $stall.block>> <<if $guts.charge > 0>> <<set $guts.charge -= 1>> <<set _gutsFactor = 1 - (0.025 +(0.025 * $guts.lvl))>> <<set $edmg = Math.max(0, Math.round($edmg * _gutsFactor))>> <<set _totalBlockedPercent += ((0.025 +(0.025 * $guts.lvl) * 100)>> <<if $guts.charge == 0>><<set _gutsWoreOff = true>><<else>><<set _gutsWoreOff = false>><</if>> <<else>> <<set _gutsWoreOff = false>> <</if>> /* apply damage */ <<set $player.hp = Math.max(0, $player.hp - $edmg)>> <<set $edialog = either("S-so tough!", "Wh-what!? That hit was clean though!", "Go down already!")>> <<set $emibattle = "Hit harder, Izaki-kun!">> /* commentary */ <<if $player.hp <= 0>> <<if _gutsWoreOff>> <<set $commentary = "You stalled, recovering " + $stall.ep + " EP. The enemy deals " + $edmg + " damage. Your guts and stalling blocked some of it, but the enemy knocks you out. Your guts wear off.">> <<else>> <<set $commentary = "You stalled, recovering " + $stall.ep + " EP. The enemy deals " + $edmg + " damage. Your guts and stalling blocked some of it, but the enemy knocks you out.">> <</if>> <<else>> <<if _totalBlockedPercent > $stall.block>> <<set $commentary = "You stalled, recovering " + $stall.ep + " EP. The enemy deals " + $edmg + " damage, but your guts and stalling blocked some of it.">> <<if _gutsWoreOff>><<set $commentary += " Your guts wear off.">><</if>> <<else>> <<set $commentary = "You stalled, recovering " + $stall.ep + " EP. The enemy deals " + $edmg + " damage, but your stalling blocked some of it.">> <</if>> <</if>> <<else>> /* enemy missed */ <<set $edmg = 0>> <<set $edialog = either("Damn it!", "Stop squirming around!", "Go down already!")>> <<set $commentary = "You stalled, recovering " + $stall.ep + " EP. The enemy's attack missed.">> <<set $emibattle = "What are you doing? Hit him!">> <</if>> <<else>> /* enemy chose to defend */ <<set $edmg = 0>> <<set $edialog = either("Attack me already!", "What are you doing!?")>> <<set $commentary = "You stalled, recovering " + $stall.ep + " EP while the enemy took a defensive stance.">> <<set $emibattle = "What are you doing? Hit him!">> <</if>> <<include "battle-result">> [[stall-syntax]][[stall-card]][[stall-equip]][[stall-equip-crud]][[stall-upgrade]] <</backend>>
<<regButton "stall" "Stall">>
<div class="skill-card" style=" background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 8px 12px; margin: 10px; display: flex; flex-direction: column; justify-content: space-between; width: 27%; box-shadow: 0 0 6px rgba(255,255,255,0.1); "> <<set $hasSP = $player.sp > 0>><div style="width:100%; text-align:left;"> <<glow "white" "0.5px #ffff00" "6px #ffff00" 18>>Stall<</glow>><span style="font-size: 14px;">(Lv. $stall.lvl)</span> </div> <div style="width:100%; text-align:left; font-size:13px; line-height:1.2;"> Reduce the damage of the incoming attack by <<print $stall.block>>% and replenish <<print $stall.ep>> ep. </div> <div class="button-row" style="width:100%; display:flex; flex-direction:column; align-items:flex-start; margin-top:auto;"> <div style="font-size:13px;"> <<glow "white" "0.5px yellow" "6px orange" 14>>Cost: 0 ep<</glow>> </div> <div class="button-row"> <<if $stall.lvl >= 10>> <<regButton "manage-skills" "Max" false>> <<elseif $stall.lvl > 0>> <<regButton "stall-upgrade" "Upgrade" $hasSP>> <<else>> <<regButton "stall-upgrade" "Learn" $hasSP>> <</if>> </div> </div> </div>
<div class="skill-card" style=" background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 10px 16px; margin: 10px; display: flex; flex-direction: column; justify-content: space-between; align-items: center; width: 20%; min-height: 180px; box-shadow: 0 0 6px rgba(255,255,255,0.1); "> <<set $hasSP = $player.sp > 0>> <div style="text-align:center; line-height: 1.2; font-size: 14px;"> <<glow "white" "0.5px #ffff00" "6px #ffff00" 20>>Stall<</glow>> Reduce the damage of the incoming attack by <<print $stall.block>>% and replenish <<print $stall.ep>> ep. </div> <div class="button-row" style="width: 100%; text-align:center;"> <<regButton "stall-equip-crud" "Equip">> </div> </div> <<backend>> [[stall-equip-crud]][[stall-upgrade]] <</backend>>
<<set _skill = "stall">> <!-- Determine the target slot --> <<set _target = $targetSlot>> <!-- Check if target slot already has a skill --> <<set _existing = $equip[_target]>> <<if _existing isnot "">> <!-- Swap: put the existing skill into the slot that currently has _skill --> <<for _slot range ["a","b","c","d"]>> <<if $equip[_slot] is _skill>> <<set $equip[_slot] = _existing>> <</if>> <</for>> <<else>> <!-- Remove _skill from any other slot --> <<for _slot range ["a","b","c","d"]>> <<if $equip[_slot] is _skill>> <<set $equip[_slot] = "">> <</if>> <</for>> <</if>> <!-- Equip _skill to target slot --> <<set $equip[_target] = _skill>> <<goto "manage-skills">>
<<set $stall.lvl += 1>> <<set $player.sp -= 1>> <<if $stall.lvl == 1>> <<set $stall.block = 10.1>> <<set $stall.ep = 10>> <<elseif $stall.lvl == 2>> <<set $stall.block = 11.2>> <<set $stall.ep = 10>> <<elseif $stall.lvl == 3>> <<set $stall.block = 12.3>> <<set $stall.ep = 10>> <<elseif $stall.lvl == 4>> <<set $stall.block = 13.4>> <<set $stall.ep = 10>> <<elseif $stall.lvl == 5>> <<set $stall.block = 14.5>> <<set $stall.ep = 15>> <<elseif $stall.lvl == 6>> <<set $stall.block = 15.6>> <<set $stall.ep = 15>> <<elseif $stall.lvl == 7>> <<set $stall.block = 16.7>> <<set $stall.ep = 15>> <<elseif $stall.lvl == 8>> <<set $stall.block = 17.8>> <<set $stall.ep = 15>> <<elseif $stall.lvl == 9>> <<set $stall.block = 18.9>> <<set $stall.ep = 15>> <<elseif $stall.lvl == 10>> <<set $stall.block = 20>> <<set $stall.ep = 20>> <</if>> <<goto "manage-skills">>
<<bg "girl-room" $hour>> <div class="content-panel"><<if !$orie.met>> <<dialog "You" "Internally">>Kamiya Orie. My childhood friend. Her dad was a member of the $player.lastname Clan but he died in prison... Her mom got addicted to drugs and overdosed. My dad took her and her elder sister, Anzu, in. That's how they joined the clan. <</dialog>> <</if>><<dialog "Orie">>Need something? <</dialog>> <div class="button-row"> <<set $location = "orie-room">> <<regButton "livingroom" "Nevermind">> </div> </div> <<backend>> <<set $orie.met = true>> <</backend>>
<<backend>> <<if $nirei.met == false && $schoolDay == false>> <<goto "nirei-intro1">> <</if>> <</backend>><<bg "girl-room" $hour>> <div class="content-panel"><<if $schoolDay && $hour < 17>> <<dialog "You">>She's not home. <</dialog>><<else>> <<dialog "Nirei">>Wanna do something? <</dialog>> <</if>> <div class="button-row"> <<regButton "residential" "Leave">> </div> </div> <<backend>>[[nirei-intro1]] <<set $hidenav = 0>> <</backend>>
<<bg "girl-room" $hour>> <div class="content-panel"> <<dialog "You" "Internally">>Kanna Nirei. Last year, after I started developing a relationship with Shiori, I ran into her and called her Shiori like an idiot. A bunch of things happened and I became her landlord. Her deep insecurity to Shiori gave her an idea to sleep with me, but she inevitably caught feelings... Shiori and I weren't dating, but my relationship with Nirei felt like an affair. And like how affairs usually go, we got caught. <</dialog>> <<dialog "Nirei">>$player.name! <</dialog>> <<dialog "You">>Nirei... Are you okay? <</dialog>> <<dialog "Nirei" "Wistful">>Things could get better... Shiori still wouldn't talk to me. Are you two... <</dialog>> <<dialog "You">>W-well... we're classmates, so I see her everyday, but... She's cold to me. <</dialog>> <<dialog "Nirei" "Wistful">>I see... <</dialog>> <div class="button-row"> <<regButton "nirei-intro2" "Comfort her">> </div> </div> <<backend>>[[nirei-intro2]] <<set $hidenav = 1>> <</backend>>
<<bg "girl-room" $hour>> <div class="content-panel"> <<dialog "You">>Don't worry. She loves you. You're sisters. I'm sure she's going to forgive us someday... <</dialog>> <<dialog "Nirei" "Bitterly">>I know this isn't the time to be asking this, but does this mean you choose me? <</dialog>> <<dialog "You">>I'm... not really sure. Maybe it's the guild, but... <</dialog>> <<dialog "Nirei" "Disappointed">>No, you don't have to explain. I get it. Matter of fact, I'd punch you if you didn't act like that! <</dialog>> <<dialog "You">>Wha? Why the violence? <</dialog>> <<dialog "Nirei" "Smiling">>Well... I think it's my way of coping. My heart would break for Shiori if we... you know... I don't know if we're allowed to be happy while she's hurting like that. <</dialog>> <div class="button-row"> <<regButton "nirei-intro3" "Hug her">> </div> </div> <<backend>>[[nirei-intro3]] <</backend>>
<<bg "girl-room" $hour>> <div class="content-panel"> <<dialog "You">>I'm sorry... <</dialog>> <<dialog "Nirei" "Choking up">>For what? <</dialog>> <<dialog "You">>For... loving you two at the same time. <</dialog>> <<dialog "Nirei">>I... I just wish I met you first. <</dialog>> You hold both her cheeks and give her a quick peck. <<dialog "You">>I don't think you would have given me the time of day though. <</dialog>> <<dialog "Nirei" "Dumbfounded">>I totally would have! <</dialog>> <<dialog "You">>You yelled at me when we first met though~ <</dialog>> <<dialog "Nirei" "Angry">>I did not!!! Besides, you called me Shiori! Who wouldn't be annoyed when that happens? <</dialog>> <<dialog "You">>Probably Shiori. <</dialog>> <<dialog "Nirei" "Laughing">>Pfft. Okay, smartass. By the way... <</dialog>> <div class="button-row"> <<regButton "nirei-intro4" "She brings up her rent">> </div> </div> <<backend>>[[nirei-intro4]] <</backend>>
<<bg "girl-room" $hour>> <div class="content-panel"> <<dialog "Nirei" "Pulling out some cash">>My payments won't go through for some reason so here's cash. <</dialog>> <<dialog "You">>No. No. I blocked the payments. <</dialog>> <<dialog "Nirei" "Shocked">>Why would you do that? <</dialog>> <<dialog "You">>Well, I'm sure you're stressed out right now... I wanted to ease your mind a bit. Getting money as a college student should be hard. <</dialog>> <<dialog "Nirei">>I have my allowance though... <</dialog>> <<dialog "You">>Which should be used on fun stuff like cute clothes and uhhh... like... What do girls usually buy? <</dialog>> <<dialog "Nirei" "Amused">>Are you sure about this? <</dialog>> <<dialog "You">>Yeah. I own this apartment. <</dialog>> <<dialog "Nirei">>Thank you. It's been hard, honestly. I've been thinking of getting a part time job, but I can relax now. I'll pay you back when I graduate and get a job though~ <</dialog>> <<dialog "You">>Looking forward to it~ <</dialog>> <div class="button-row"> <<regButton "nirei-home" "End">> </div> </div> <<backend>>[[nirei-intro4]] <<set $nirei.met = true>> <</backend>>
<<if !$shiori.met>><<goto "shiori-ignore">><</if>> <<bg "classroom">> <div class="content-panel"> <<dialog "Shiori">>Yes? <</dialog>> <div class="button-row"> <<regButton "classroom" "Nevermind">> </div> </div> <<backend>> <<time 0 1>> <<set $hidenav = 0>> <</backend>>
<<glow "white" "0.5px cyan" "12px cyan" "18">>Inventory<</glow>> <<for _item range Object.keys($inventory)>><<if $inventory[_item] > 0>><span style="display: inline-block; width: 60%;"><<print _item>> : <<print $inventory[_item]>>x</span><span style="display: inline-block; width: 40%;"><<use _item>></span><</if>><</for>> <label> <input type="checkbox" style="transform: scale(1.5); margin-right: 5px;" id="mute-alerts" onchange="SugarCube.State.variables.muteAlerts = this.checked">Mute Purchase Alert </label> <<backend>> <script> // Ensure the checkbox reflects the value of muteAlerts when the page reloads. document.getElementById("mute-alerts").checked = SugarCube.State.variables.muteAlerts; </script> <</backend>>
<<backend>> <<if $akane.day <= $dayIndex && $akane.quest == 1>> <<goto "akane2-1">> <</if>> <</backend>><<bg "doctors-office">> <div class="content-panel"> <<dialog "Akane">>What can I do for you, Young Master? <</dialog>> <div class="button-row"> <<set $location = "doctors-office">> <<include "quests">> <<buy "Health Tonic" 25>> <<regButton "akane-heal" "Heal">> <<regButton "hospital" "Leave">> </div> </div> <<backend>>[[akane-quests]][[akane1-1]] <<set $hidenav = 0>> <</backend>>
<<bg "jap-room">> <div class="content-panel"> <<vid "azuki/azuki-caught">> <<dialog "Takeshi">>Wha- AZUKI!? WHAT IS HAPPENING? <</dialog>> <<dialog "Azuki">>D-Dad! I can explain! <</dialog>> <<dialog "You" "Internally">>Shit! I-is that... <</dialog>> <<dialog "Takeshi" "Angry">>You! You're <<textbox "$player.lastname" Sawada>> <<textbox "$player.name" Shin>>! <</dialog>> <<dialog "You" "Internally">>Fuck! He knows me! This guy... He's... <</dialog>> <<dialog "Takeshi" "Angry">>I guess the your clan is finally declaring war on the Yamaguchi Clan, huh? Has your old man gone senile!? <</dialog>> <<dialog "You">>Mr. Yamaguchi! I'm sorry, I had no idea... <</dialog>> <<dialog "Azuki">>YOU! You're a gangster!? You told me you work in IT! <</dialog>> <<dialog "You" "Internally">>THIS. BITCH. <</dialog>> <<dialog "You" "Panicked">>No! Wait, Azuki-chan! I really am- <</dialog>> <<dialog "Takeshi" "Angry">>YOU LIED TO MY DAUGHTER? THIS MEANS WAR, YOU LITTLE SHIT! TELL THIS TO YOUR OLD MAN. I'M GOING TO DESTROY THE YOUR CLAN!! <</dialog>> <<dialog "You">>No! Wait- <</dialog>> <div class="button-row"> <<regButton "intro3" "Takeshi hits you">> </div> </div> <<backend>>[[intro3]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "jap-room">> <div class="content-panel"> <<dialog "You" "Internally">>Fuck. If I don't let him hit me, there's going to be a war. <</dialog>> <<vid "azuki/azuki-punch">> <<dialog "You" "Internally">>H-holy shit! His fist is so... h-heavy... I'm... passing out... <</dialog>> <div class="button-row"> <<regButton "intro4" "Wake up">> </div> </div> <<backend>>[[intro4]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "alley">> <div class="content-panel"> <img src="img/misc/wake-streets.png" style="max-width: 80%;"> <<dialog "You">>T-That old fucker... I need to warn my dad! <</dialog>> <div class="button-row"> <<regButton "intro5" "Warn your dad">> </div> </div> <<backend>>[[intro5]] <<set $hidenav = 1>> <<time 3 12>> <</backend>>
<<bg "uncle-house" $hour>> <div class="content-panel"> <<dialog "Dad">>HAHAHA! I can't believe you fucked that geezer's kid. I'm proud of you, son. <</dialog>> <<dialog "You">>Dad! He's about to wage war on us! <</dialog>> <<dialog "Dad">>Hmmm. That is a problem. <</dialog>> <<dialog "You">>I'm sorry. I really didn't know. That guy... he knocked me out with one punch. He's strong. <</dialog>> <<dialog "Dad">>Your old man's not weak, son. That Takeshi and I... We've been beating the shit out of each other since middle school and we're currently tied. My kid fucking his kid... Now that's worth a billion wins. <</dialog>> <<dialog "You">>I can fight too. <</dialog>> <<dialog "Dad">>No, $player.name. That geezer let you live to send a message. He's saying he can hunt you down whenever he wants. You're gonna live with your uncle for now. You can help him take Kumine over. That should end the war. <</dialog>> <<dialog "You">>... <</dialog>> <div class="button-row"> <<regButton "intro6" "He sends you to Kumine the next day">> </div> </div> <<backend>>[[intro6]] <<set $hidenav = 1>> <<time 0 15>> <</backend>>
<<include "sleep-crud">><<bg "uncle-house" $hour>> <div class="content-panel"> <<dialog "You" "Internally">>So this is Uncle's house... <</dialog>> <<dialog "Uncle">>$player.name! There's my nephew! Welcome to Kumine. <</dialog>> <<dialog "You">>Uncle! It's been a while. <</dialog>> <<dialog "Uncle">>I heard you had sex with that gorilla's daughter. That was sick, kid. <</dialog>> <<dialog "You">>Sigh. Yeah. And, now we're at war. <</dialog>> <<dialog "Uncle">>Ah that's fine. Bro Isao will handle Shibuya. You know what to do, right? <</dialog>> <<dialog "You">>Take over Kumine? I went around before I got here, and it seems peaceful... No thugs. Just a bunch of delinquents. How come you haven't taken it over yet? <</dialog>> <<dialog "Uncle">>Those are not normal delinquents you see in Shibuya. The students in Kumine are tough. They run the entire city. <</dialog>> <div class="button-row"> <<regButton "intro7" "He explains">> </div> </div> <<backend>>[[intro7]] <<set $hidenav = 1>> <</backend>>
<<bg "uncle-house" $hour>> <div class="content-panel"> <<dialog "Uncle">>Kids here are unusually tough, and they get tougher every year. What makes them even more successful is their relationship with the civilians. <</dialog>> <<dialog "You">>Relationship? <</dialog>> <<dialog "Uncle">>They don't bother residents and they protect the city against outsiders. <</dialog>> <<dialog "You">>How do they get tougher if it's this peaceful? <</dialog>> <<dialog "Uncle">>Simple. They fight among themselves. Which school is the true guardian of Kumine? Stuff like that. Their influence got so huge that cops started ignoring them. <</dialog>> <<dialog "You">>So that's why you need me to take over the city. <</dialog>> <<dialog "Uncle">>I've enrolled you at Aoba. We have a few people in that school already, but we still can't say that Aoba is the strongest school. You're going to have to change that. <</dialog>> <div class="button-row"> <<regButton "intro8" "Nod">> </div> </div> <<backend>>[[intro8]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "uncle-house" $hour>> <div class="content-panel"> <<dialog "Uncle">>Anyways. Classes start at 8AM. Don't be late! We wouldn't want you to get kicked out. <</dialog>> <<dialog "You">>N-now? Can't I like rest first? <</dialog>> <<dialog "Uncle">>I heard Takeshi's one punch made you sleep like a baby. You've had plenty of rest. <</dialog>> <<dialog "You">>Hey! I took that hit on purpose! <</dialog>> <<dialog "Uncle">>Sure, kid. Now go to class. <</dialog>> <div class="button-row"> <<regButton "home" "End">> </div> </div> <<backend>>[[main1-1]][[player-quests]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<backend>> <<set $intMetric += 17 - $hour>> <<set $rewxp = 2 + Math.round($player.int * random(5,10) * 0.1)>> <<if $hour < 12>><<set $hour += 1>><</if>> <<set $rewxp *= (17 - $hour)>> <</backend>><<bg "classroom">> <div class="content-panel"> You focus in class. You feel yourself getting smarter. You get +$rewxp xp. <<exp $rewxp>> <hr> <img id="title-image" src="img/misc/study.jpg" style="width: 45%;"> <div class="button-row"> <<regButton "classroom" "Class Dismissed">> </div> </div> <<backend>> <<set $hour = 17>> <<set $minute = 0>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <img src="img/misc/class-intro.jpg" style="max-width: 80%;"> <<dialog "Shizu">>Class! We have a new student. $player.name, introduce yourself. <</dialog>> <<dialog "You">>Good morning. My name is $player.lastname $player.name. I recently moved here from Shibuya. Please take care of me. <</dialog>> <<dialog "Shizu">>You heard him. Help him adjust, okay? Miss class rep, assist him, okay? <</dialog>> You instantly feel a collective hostility from a lot of people. <<dialog "You" "Internally">>Whoa. I'm already making enemies. <</dialog>> <<dialog "Haru">>Yes, ma'am! <</dialog>> <<dialog "Shizu">>Great! $player.name, you can take the seat next to Miss Haru. <</dialog>> You feel the hostility grow stronger. <<dialog "You">>...Yes, ma'am. <</dialog>> <div class="button-row"> <<regButton "haru-intro1" "Take your seat">> </div> </div> <<backend>>[[haru-intro1]] <<set $hidenav = 1>> <<set $shizu.met = true>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You" "Internally">>I get why they're hostile. She's pretty... <</dialog>> <<dialog "You">>Hi. I'm $player.name. You're Haru, right? <</dialog>> <<dialog "Haru" "Uninterested">>...Yes. <</dialog>> <<dialog "You">>So... Is there anything fun to do around he-- <</dialog>> <<dialog "Haru">>Please only talk to me about your academics. I don't mind helping you study, but I also have my own work. I can't waste time on pointless chatter. I'm sorry. <</dialog>> <<dialog "You">>S-sure... Sorry. <</dialog>> <<dialog "Haru">>No need to apologize. Being sociable is good but I just don't have time for it. Now, open your text book and listen to Miss Shizu. <</dialog>> <<dialog "You">>Got it... <</dialog>> <<dialog "You" "Internally">>So uptight... <</dialog>> <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>> <<set $hidenav = 1>> <<set $haru.met = true>> <<set $haru.day = $dayIndex + 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You" "Internally">>I've already bothered her today... She might snap at me if I bother her again. <</dialog>> <<dialog "Haru" "Focusing">>... <</dialog>> <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>Hey, class rep? <</dialog>> <<dialog "Haru">>You can just call me Haru. What is it? <</dialog>> <<dialog "You">>Can I borrow your notes for the lessons I've missed? <</dialog>> <<dialog "Haru">>...Sure. I admire your initiative. <</dialog>> <<dialog "You">>Thanks! And I admire your... um... nice-ness. <</dialog>> <<vid "haru/haru-chat">> <<dialog "Haru" "Hands you her notes">>...You don't have to give me back the compliment, you know? <</dialog>> <<dialog "You">>Wow. Your handwriting is pretty. <</dialog>> <<dialog "Haru">>...Isn't it only natural for students to have a legible penmanship? <</dialog>> <<dialog "You">>This is beyond legible. This is art... I admire your beautiful penmanship~ <</dialog>> <<dialog "Haru" "Shy">>...Thanks. <</dialog>> <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>>[[haru-intro3]] <<set $hidenav = 1>> <<set $haru.social = 1>> <<time 0 1>> <<set $haru.day = $dayIndex + 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>Hey, Haru? <</dialog>> <<vid "haru/haru-class">> <<dialog "Haru">>Yes? <</dialog>> <<dialog "You">>Can you help me with this math problem? <</dialog>> <<dialog "Haru">>What is it? <</dialog>> <<dialog "You">>Well, first, what the heck is a polynomial? <</dialog>> <<dialog "Haru" "Annoyed">>Okay, first of all, mind your language. <</dialog>> <<dialog "You">>Yeah... That's why I said heck... <</dialog>> <<dialog "Haru" "Even more annoyed">>S-second of all... A polynomial is basically a mathematical expression. Like 2x + 1. That's a polynomial. <</dialog>> <<dialog "You">>You're so smart... <</dialog>> <<dialog "Haru" "Frustrated">>This is basic stuff for high schoolers! <</dialog>> <<dialog "You">>Hey. We all have our strengths. I'm just not good at studying at all... <</dialog>> <<dialog "Haru" "Calm">>Well... I do appreciate you trying your best. I'm sorry. I should be more patient. Anything else you need more help with? <</dialog>> <<dialog "You" "Smiling">>Hehe. You're really nice. About this problem... <</dialog>> <<dialog "Haru" "Shy">>Yeah? Show me... <</dialog>> <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>>[[haru-intro4]] <<set $hidenav = 1>> <<set $haru.social = 2>> <<set $haru.day = $dayIndex + 1>> <<time 0 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<dialog "You">>A protein bar and banana milk should be good breakfast, right? <</dialog>> <div class="button-row"> <<regButton "konbini" "End">> </div> </div> <<backend>>[[haru-intro5]] <<set $hidenav = 1>> <<set $haru.social = 3>> <</backend>>
<<nobr>> <<if $location == "konbini" && $haru.social == 2 && $player.money >= 10>><<set $afford = $player.money >=10>> <<regButton "haru-intro4" "Buy Breakfast for Haru 💵$10" $afford>> <</if>> <<if $location == "classroom" && $haru.social == 4 && $schoolDay && $hour < 17>> <<regButton "haru1-1" "Haru is panicking">> <</if>> <<if $location == "rooftop" && $haru.social == 8 && $haru.quest == 1 && $schoolDay && $hour == 12>> <<regButton "haru2-1" "You see Haru waiting for you">> <</if>> <<if $location == "classroom" && $haru.social == 8 && $haru.quest == 2 && $schoolDay && $hour == 17>> <<regButton "haru3-1" "Study with Haru at home">> <</if>> <<if $location == "classroom" && $haru.social == 9 && $haru.quest == 2 && $schoolDay && $hour == 17>> <<regButton "haru3-7" "Study with Haru at home">> <</if>> <<if $location == "classroom" && $haru.social ==11 && $haru.quest == 2 && $schoolDay && $hour == 17>> <<regButton "haru3-17" "Take Haru home">> <</if>> <<if $location == "classroom" && !$haru.study && $haru.quest == 3 && $schoolDay && $hour == 17>> <<regButton "haru4-1" "Study with Haru at home">> <</if>> <<if $location == "council" && $haru.study && $haru.quest == 3 && $schoolDay && $hour == 17 && $player.int >= 25 && $haru.day <= $dayIndex>> <<regButton "haru4-3" "Show Haru your grades">> <</if>> <</nobr>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>Hey, Haru? <</dialog>> <<vid "haru/haru-class">> <<dialog "Haru">>Yes? Do you need help? <</dialog>> <<dialog "You">>No. I just wanted to thank you for helping me so much. I got you a protein bar and banana milk. In case you haven't had breakfast yet... <</dialog>> <<dialog "Haru" "Caught off guard">>...Th-thank you. <</dialog>> <<dialog "You" "Smiling">>I'm glad you're the class rep. <</dialog>> <<dialog "Haru" "Shy">>Ahem. J-just focus in class, will you? <</dialog>> <<dialog "You">>It's self study though... <</dialog>> <<dialog "Haru" "Shy">>Just focus on your work!!! <</dialog>> <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>>[[haru1-1]] <<set $hidenav = 1>> <<set $haru.social = 4>> <<set $haru.day = $dayIndex + 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "haru/haru1/haru1-1">> <<dialog "Haru" "Panicking">>It's not here... Where did I put it? <</dialog>> <<dialog "You">>Hey... Are you okay? <</dialog>> <<dialog "Haru" "Panicking">>...M-my textbook... It's not here... <</dialog>> <div class="button-row"> <<regButton "haru1-2" "Hand her your book">> </div> </div> <<backend>>[[haru1-2]] <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "haru/haru1/haru1-2">> <<dialog "You">>You can use mine. Here. <</dialog>> <<dialog "Haru" "Shy">>What? No, the teacher will scold you. <</dialog>> <<dialog "You">>Come on. Look at me. I'm used to scolding. I'll be fine. <</dialog>> <<dialog "Haru" "Worried">>But... <</dialog>> <<dialog "You">>Shh. Miss Shizu's here. <</dialog>> <<dialog "Haru">>Umm... <</dialog>> <div class="button-row"> <<regButton "haru1-3" "She takes the book">> </div> </div> <<backend>>[[haru1-3]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Shizu">>Open your books to page 46. <</dialog>> Everyone opens their books as Haru awkwardly peeks at you <<dialog "Shizu">>$player.name, where's your book? <</dialog>> <<dialog "You">>I don't really believe in books, miss. I think I can learn better if I listen to your pretty voice. <</dialog>> <<dialog "Shizu" "Flustered">>Wha- Th-This kid! Ahem. M-miss Suzuki! Share your book with him. <</dialog>> <<dialog "Haru">>Y-yes, ma'am! <</dialog>> <div class="button-row"> <<regButton "haru1-4" "She scoots over to you">> </div> </div> <<backend>>[[haru1-4]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "haru/haru1/haru1-3">> <<dialog "You">>See? I handled that well, didn't I? <</dialog>> <<dialog "Haru" "Giggling">>Pfft. Flirting with Miss Shizu... <</dialog>> <<dialog "You">>Hmm? Jealous, are we? <</dialog>> <<dialog "Haru">>Yeah, right. Here let's share. <</dialog>> <<dialog "You">>For the record, I think your voice is prettier. <</dialog>> <<dialog "Haru" "Flustered">>Wha- Th-that was corny! Whatever! <</dialog>> <<dialog "Shizu">>Quiet, please! <</dialog>> <div class="button-row"> <<regButton "haru1-5" "You share the book">> </div> </div> <<backend>>[[haru1-5]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "haru/haru1/haru1-4">> <<dialog "Haru">>Hey... Sorry for getting you in trouble... and thank you. <</dialog>> <<dialog "You">>Don't even mention it. You've helped me out way more times. Besides, I just can't let the pretty class rep get scolded. It's bad for optics. <</dialog>> <<dialog "Haru">>There you go flirting again. <</dialog>> <<dialog "You" "Smiling">>You don't like it? <</dialog>> <<dialog "Haru" "Shy">>Well... As long as it doesn't affect my focus. You can say whatever you want. It's not like I own your mouth. <</dialog>> <<dialog "You">>You can own it if you want~ <</dialog>> <<dialog "Haru" "Flustered">>I-I changed my mind! No more flirting! <</dialog>> <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>>[[haru-intro6]] <<set $hidenav = 1>> <<set $haru.social = 5>> <<set $haru.quest = 1>> <<set $haru.day = $dayIndex + 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>Hey, Haru? <</dialog>> <<dialog "Haru">>Yes? Do you need help? <</dialog>> <<dialog "You">>You're writing with a pen, right? <</dialog>> <<dialog "Haru" "Confused">>Huh? Yeah, this is a pen. What did you think it was? <</dialog>> <<dialog "You">>I just wanted to confirm. <</dialog>> <<dialog "Haru" "Confused">>That this is is a pen? <</dialog>> <<dialog "You">>What? No. That your voice really is prettier. It really is. <</dialog>> <<vid "haru/haru-chat">> <<dialog "Haru" "Completely Red">>Wh-what? Just focus on class, idiot! <</dialog>> <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>>[[haru-intro7]] <<set $hidenav = 1>> <<set $haru.social = 6>> <<set $haru.day = $dayIndex + 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>What the... Hey, Haru! <</dialog>> <<dialog "Haru" "Confused">>H-huh? <</dialog>> <<dialog "You">>Wait. Wait. Look at me for a bit, there's something up with your face. <</dialog>> <<dialog "Haru" "Embarrassed">>W-What is it? What is it? Do I have something on my face? <</dialog>> <<dialog "You">>What did you do? <</dialog>> <<dialog "Haru" "Panicking">>What!? What is it!? <</dialog>> <<dialog "You">>You look extra cute today. <</dialog>> <<vid "haru/haru-chat">> <<dialog "Haru" "Flustered">>Y-you! Don't talk to me. <</dialog>> <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>>[[haru-intro8]] <<set $hidenav = 1>> <<set $haru.social = 7>> <<set $haru.day = $dayIndex + 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>Hey. Haru? <</dialog>> <<dialog "Haru">>What is it now? <</dialog>> <<dialog "You">>I need some help. <</dialog>> <<dialog "Haru" "Interested">>Oh? You actually need help this time. What can I help you with? <</dialog>> <<dialog "You">>The view in my room is... well... not great. <</dialog>> <<dialog "Haru" "Confused">>Okay? Do you need some help picking a new design? <</dialog>> <<dialog "You">>Oh. No. I just think it would be prettier to look at if you were there. <</dialog>> <<vid "haru/haru-chat">> <<dialog "Haru" "Blushing">>Wha- Honestly! <</dialog>> <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>>[[haru2-1]] <<set $hidenav = 1>> <<set $haru.social = 8>> <<set $haru.day = $dayIndex + 1>> <<time 0 1>> <</backend>>
<<bg "rooftop" $hour>> <div class="content-panel"> <<vid "haru/haru2/haru-roof">> <<dialog "You" "Internally">>Hm? What's she doing here? <</dialog>> <div class="button-row"> <<regButton "haru2-2" "Approach her">> </div> </div> <<backend>>[[haru2-2]] <<set $hidenav = 1>> <</backend>>
<<bg "rooftop" $hour>> <div class="content-panel"> <<vid "haru/haru2/haru-roof2">> <<dialog "You">>Haru! Why are you here? You waiting for me or something? <</dialog>> <<dialog "Haru">>Yes. You go here a lot... I think? <</dialog>> <<dialog "You" "Internally">>I didn't expect that. <</dialog>> <<dialog "You">>Yeah, I do. What's up? <</dialog>> <<dialog "Haru" "Hesitant">>Um... <</dialog>> <div class="button-row"> <<regButton "haru2-3" "Approach her">> </div> </div> <<backend>>[[haru2-3]] <<set $hidenav = 1>> <</backend>>
<<bg "rooftop" $hour>> <div class="content-panel"> <<vid "haru/haru2/haru-roof3">> <<dialog "You">>Come on, tell me. <</dialog>> <<dialog "Haru" "Hesitant">>L-look. Umm. You see... <</dialog>> <<dialog "You" "Internally">>Heh. Is she going to confess? <</dialog>> <<dialog "You">>Take your time. <</dialog>> <<dialog "Haru">>Uhh... Right! I worry about you. You're kind of bad at studying, and Miss Shizu did tell me to look after you... also you lent me your book once. So... I'd be willing to give you some tutoring. <</dialog>> <<dialog "You" "Internally">>Seriously... This girl just can't be honest. <</dialog>> <div class="button-row"> <<regButton "haru2-4" "Invite her to your place">> </div> </div> <<backend>>[[haru2-4]] <<set $hidenav = 1>> <</backend>>
<<bg "rooftop" $hour>> <div class="content-panel"> <<vid "haru/haru2/haru-roof4a">> <<dialog "You">>Actually, you know what? I'm struggling with history... I just can't seem to remember specific events right. <</dialog>> <<dialog "Haru" "Excited">>Really? History? Oh! Maybe because you're treating it as boring information. You should just treat it like gossip or reading manga. The world IS interesting after all. <</dialog>> <<dialog "You">>Whoa! You're not just pretty. You're wise too. Do you want to study at my place after class? <</dialog>> <<dialog "Haru" "Blushing">>A-at your place? Well... O-okay. <</dialog>> <<dialog "You">>Great! I'll see you then. <</dialog>> <div class="button-row"> <<regButton "classroom" "You have lunch with her and get back to class">> </div> </div> <<backend>>[[haru3-1]] <<set $hidenav = 1>> <<set $hour = 13>><<set $minute = 0>> <<set $haru.quest = 2>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>Hey! Ready to go? <</dialog>> <<dialog "Haru" "Excited">>Sure! <</dialog>> <div class="button-row"> <<regButton "haru3-2" "Take her home">> </div> </div> <<backend>>[[haru3-2]] <<set $hidenav = 1>> <</backend>>
<<bg "uncle-house" $hour>> <div class="content-panel"> <<dialog "Haru" "Amazed">>Woah! This is your house? <</dialog>> <<dialog "You">>My uncle's. I live in Shibuya, remember? <</dialog>> <<dialog "Haru">>Your uncle's house is nice. <</dialog>> <<dialog "You">>Really? Wanna live here with me? <</dialog>> <<dialog "Haru" "Flustered">>Sh-shut up! <</dialog>> <<dialog "Uncle">>You shouldn't tease a lady like that, $player.name. <</dialog>> <<dialog "You">>Uncle! This is Haru, my girlfriend. <</dialog>> <<dialog "Haru" "Flustered">>Wh-what!? <</dialog>> <<dialog "You">>Haha! She's my classmate. Haru, this is my uncle. <</dialog>> <<dialog "Uncle">>Nice to meet you, Haru. Thanks for taking care of my nephew. You can call me Uncle Hideo, if you'd like. <</dialog>> <<dialog "Haru" "Nervous">>N-nice too meet you too... <</dialog>> <<dialog "You">>Welp. We're off to study! <</dialog>> <<dialog "Uncle">>Hah. Good one. Have fun, you too! <</dialog>> <<dialog "Haru" "Blushing">>W-we're really just studying!!! <</dialog>> <div class="button-row"> <<regButton "haru3-3" "Actually study">> </div> </div> <<backend>>[[haru3-3]] <<set $hidenav = 1>> <<time 0 15>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-study">> <<dialog "Haru">>Do you understand? <</dialog>> <<dialog "You">>Uhh... <</dialog>> <<dialog "Haru" "Chuckling">>Memorize these first. <</dialog>> <div class="button-row"> <<regButton "haru3-4" "You struggle">> </div> </div> <<backend>>[[haru3-4]] <<set $hidenav = 1>> <<time 0 12>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-flirt">> <<dialog "You">>I'm not getting anything. I'm too distracted... <</dialog>> <<dialog "Haru">>Huh? What's wrong? <</dialog>> <<dialog "You">>You're too pretty. <</dialog>> <<dialog "Haru">>Psh. Stop it and focus! <</dialog>> <div class="button-row"> <<regButton "haru3-5" "You finish studying">> </div> </div> <<backend>>[[haru3-5]] <<set $hidenav = 1>> <<time 0 16>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<dialog "Haru">>It's getting late... <</dialog>> <<dialog "You">>We can stop here. I'll walk you home. <</dialog>> <<dialog "Haru">>You don't have to! <</dialog>> <<dialog "You">>Of course, I have to. <</dialog>> <<dialog "Haru" "Teasing">>I see you're one of those guys who think they have to protect a girl, huh? <</dialog>> <<dialog "You">>Protect? I just want to spend more time with you. <</dialog>> <<dialog "Haru" "Blushing">>G-geez! You just always have to have the final word, don't you? <</dialog>> <div class="button-row"> <<regButton "haru3-6" "Walk her home">> </div> </div> <<backend>>[[haru3-6]] <<set $hidenav = 1>> <<set $hour += 1>> <<time 0 6>> <</backend>>
<<bg "residential" $hour>> <div class="content-panel"> <<dialog "Haru">>We're here... Thanks for walking me home. <</dialog>> <<dialog "You">>Like I said, I just wanted to be with you more. Making sure you're safe is just a bonus. <</dialog>> <<dialog "Haru">>Do you talk like this to everyone? You're very straightforward, you know? <</dialog>> <<dialog "You">>Well, aren't you the type who doesn't like wasting time? My straightforwardness must be reaally attractive to you. <</dialog>> <<dialog "Haru">>Pfft. Shut up and go home safe. I had a lot of fun teaching you, $player.name. <</dialog>> <<dialog "You">>And I had a lot of fun learning from you, Haru. I'll see you tomorrow, okay? <</dialog>> <<dialog "Haru">>Good night. <</dialog>> <<dialog "You">>Good night~ <</dialog>> <div class="button-row"> <<regButton "residential" "End">> </div> </div> <<backend>>[[haru3-7]] <<set $hidenav = 1>> <<set $haru.social = 9>> <<time 0 15>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>Hey! Ready to go? <</dialog>> <<dialog "Haru" "Excited">>Sure! <</dialog>> <div class="button-row"> <<regButton "haru3-8" "Take her home">> </div> </div> <<backend>>[[haru3-8]] <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-study">> <<dialog "Haru">>Do you understand? <</dialog>> <<dialog "You">>Yeah, I think I'm getting it. <</dialog>> <<dialog "Haru" "Smiling">>Yay! <</dialog>> <div class="button-row"> <<regButton "haru3-9" "Touch her shoulder">> </div> </div> <<backend>>[[haru3-9]] <<set $hidenav = 1>> <<time 0 42>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<dialog "You">>It's all thanks to you~ <</dialog>> <<vid "haru/haru3/haru-shoulder">> <<dialog "Haru" "Flustered">>... <</dialog>> <<dialog "You">>O-oh. Sorry. <</dialog>> <<dialog "Haru" "Nervous">>N-no... It's okay.. I just got nervous.... I... I want you to touch me. <</dialog>> <div class="button-row"> <<regButton "haru3-10" "Touch the side of her head">> </div> </div> <<backend>>[[haru3-10]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-headpat">> <<dialog "You">>Are you sure? <</dialog>> <<dialog "Haru" "Nervous">>I... I think so... <</dialog>> <<dialog "You">>Only one way to find out. <</dialog>> <div class="button-row"> <<regButton "haru3-11" "Kiss her">> </div> </div> <<backend>>[[haru3-11]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-kiss">> <<dialog "Haru">>That was... unexpectedly nice... <</dialog>> <<dialog "You">>Unexpectedly? Was that you first kiss? <</dialog>> <<dialog "Haru">>Y-yes... <</dialog>> <<dialog "You">>Well... Plenty more where that came from. <</dialog>> <div class="button-row"> <<regButton "haru3-12" "Kiss her again and grab her boob">> </div> </div> <<backend>>[[haru3-12]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<dialog "Haru" "Surprised">>W-wait... $player.name. Stop. <</dialog>> <<dialog "You">>S-sorry. I got carried away, huh? <</dialog>> <<dialog "Haru">>I-I... I have to go. <</dialog>> <<dialog "You">>Wait! Let me walk you home! <</dialog>> <<dialog "Haru" "Rushing">>I can walk by myself. <</dialog>> <div class="button-row"> <<regButton "haru3-13" "Follow her">> </div> </div> <<backend>>[[haru3-13]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "residential" $hour>> <div class="content-panel"> <<dialog "Haru" "Choking up">>I said I can wallk home alone! <</dialog>> <<dialog "You">>Haru. I'm sorry. I shouldn't have rushed you like that. <</dialog>> <<dialog "Haru" "Tearing up">>I... I don't blame you. I'm sure people our age have had plenty of experience already... I just... <</dialog>> <<dialog "Haru" "Crying">>I got scared. I'm just worried, you know? What if I get pregnant? What if I suck at it and you wouldn't like me anymore? <</dialog>> <div class="button-row"> <<regButton "haru3-14" "Hug her">> </div> </div> <<backend>>[[haru3-14]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "residential" $hour>> <div class="content-panel"> <<dialog "You">>How can I ever not like you? <</dialog>> <<dialog "Haru" "Crying">>I don't know... I just don't have any experience in this stuff... <</dialog>> <<dialog "You">>There's no way I would ever not like you. You're beautiful, smart, kind, great kisser. <</dialog>> <<dialog "Haru" "Giggles while crying">>You're just saying that. That was my first kiss. I bet it was bad. <</dialog>> <<dialog "You">>It was amazing. <</dialog>> <<dialog "Haru" "Calming Down">>I'm still scared... If I get pregnant, we'd have a baby before we even graduate... <</dialog>> <<dialog "You">>We can always be careful, you know? <</dialog>> <div class="button-row"> <<regButton "haru3-15" "She's not sure">> </div> </div> <<backend>>[[haru3-15]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "residential" $hour>> <div class="content-panel"> <<dialog "Haru">>I don't know... It's just terrifying. <</dialog>> <<dialog "You">>We can also wait until you're ready. I don't mind waiting. <</dialog>> <<dialog "Haru">>Really? That doesn't make you hate me? <</dialog>> <<dialog "You">>That would be fucked up if I hated you because you don't want to sleep with me. <</dialog>> <<dialog "Haru">>...It's not like I don't want to... I kind of expected it when we kissed, but... I don't know. When it started happening, I started thinking about a bunch of stuff... I guess that overwhelmed me... <</dialog>> <<dialog "You">>That's okay. It's your first time. That's understandable. We'll wait until you're ready. I'll take you home for now, okay? <</dialog>> <<dialog "Haru">>Okay... <</dialog>> You kiss her forehead <<dialog "You">>Don't worry about it. You still look beautiful when you cry, but I like it better when you're smiling. Let me see that smile~ <</dialog>> <<dialog "Haru" "Smiling">>This smile? <</dialog>> <div class="button-row"> <<regButton "haru3-16" "Give her a peck on the lips">> </div> </div> <<backend>>[[haru3-16]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "residential" $hour>> <div class="content-panel"> <<dialog "Haru">>H-hey! <</dialog>> <<dialog "You">>You were just too pretty. <</dialog>> <<dialog "Haru">>You didn't have consent, so as your punishment, do it again. <</dialog>> You give her a deeper kiss. <<dialog "You">>Is that good? <</dialog>> <<dialog "Haru">>Hehe~ Take me home. <</dialog>> <<dialog "You">>Let's go~ <</dialog>> <<dialog "Haru">>Thank you... for being patient with me... <</dialog>> <<dialog "You">>You're worth the wait. <</dialog>> <<dialog "Haru" "Holds your hand">>S-so... how were my boobs? Are they... you know? Big enough? <</dialog>> <<dialog "You">>I'll answer that when I see them~ <</dialog>> <<dialog "Haru">>No fair! Just tell me!!! <</dialog>> <div class="button-row"> <<regButton "residential" "End">> </div> </div> <<backend>>[[haru-intro9]] <<set $hidenav = 1>> <<set $haru.social = 10>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>Hey, are you doing okay? <</dialog>> <<dialog "Haru" "Tired">>Yes... Just sleepy. <</dialog>> <<dialog "You">>Did you not get any sleep last night? <</dialog>> <<dialog "Haru" "Tired">>Um... I did not... I did some... Um... R-- Re-- <</dialog>> <<dialog "You">>Re? Regret? <</dialog>> <<dialog "Haru" "Whispering">>Research... <</dialog>> <<dialog "You">>Research? About what? <</dialog>> <<dialog "Haru" "Completely Red">>S... Sex... <</dialog>> <<dialog "You" "Confused">>Research about sex? <</dialog>> <<dialog "You" "Realizing">>Oh! Research about sex... I see you've discovered porn. <</dialog>> <<dialog "Haru" "Flustered">>S-stop talking! <</dialog>> <div class="button-row"> <<regButton "haru-intro10" "Laugh">> </div> </div> <<backend>>[[haru-intro10]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>It's okay, you know? It's normal. <</dialog>> <<dialog "Haru" "Tired">>I know. I know. I'm just... you know... not the type of girl who watches that kind of thing. <</dialog>> <<dialog "You">>You definitely are not. <</dialog>> <<dialog "Haru" "Offended">>What's that supposed to mean!? <</dialog>> <<dialog "You">>It means our beautiful class rep is innocent. <</dialog>> <<dialog "Haru" "Tired">>Well... After what I've seen last night. I'm not that innocent anymore. Are we really supposed to do all those things? <</dialog>> <<dialog "You">>It depends on what you saw. If you've seen only softcore stuff, then yeah, we're supposed to do those things, it's normal. If you've seen hardcore stuff like ropes and shackles and all sorts of crazy positions, then 100% yeah, we're supposed to do those things. <</dialog>> <<dialog "Haru" "Tired">>You're an idiot. <</dialog>> <div class="button-row"> <<regButton "haru-intro11" "Ask her if the porn helped her">> </div> </div> <<backend>>[[haru-intro11]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>So? How does watching it make you feel? Did it make things worse? <</dialog>> <<dialog "Haru">>Honestly... After watching them... I got a bit... um... excited. <</dialog>> <<dialog "You">>Oh? <</dialog>> <<dialog "Haru">>I guess I was overthinking because I haven't tried it yet, but... I kind of... want to... try. <</dialog>> <<dialog "You" "Excited">>Really!? <</dialog>> <<dialog "You" "Calm">>I mean, sure... If you want to. <</dialog>> <<dialog "Haru" "Giggling">>Oh. Oh. If I want to? <</dialog>> <<dialog "You">>So... Should I come get you after class? <</dialog>> <<dialog "Haru" "Tired">>Okay. <</dialog>> <div class="button-row"> <<regButton "haru-intro12" "Class ends">> </div> </div> <<backend>>[[haru-intro12]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "faculty">> <div class="content-panel"> <<dialog "Shizu">>You're slowly catching up to your classmates. I guess Miss Suzuki is really helping you, huh? But you still need to work on your quizzes and seatworks. <</dialog>> <<dialog "You">>Yes, Miss Shizu. <</dialog>> <<dialog "You" "Internally">>End it. End it. End it. End it. <</dialog>> <<dialog "Shizu" "Notices you being restless">>I guess you have somewhere to go, huh? You don't like hanging out with your teacher with the pretty voice? <</dialog>> <<dialog "You" "Smirking">>Maybe if we talked over dinner, I'd enjoy it more, Miss Shizu. <</dialog>> <<dialog "Shizu" "Chuckling">>You really have a way with words, huh? Now, go. We'll discuss your grades again next time. <</dialog>> <<dialog "You">>Thank you! <</dialog>> You bolt out of there. <<dialog "Shizu">>Ah~ To be young again. <</dialog>> <div class="button-row"> <<regButton "haru-intro13" "You run to the classroom">> </div> </div> <<backend>>[[haru-intro13]] <<set $hidenav = 1>> <<set $hour = 17>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>Haru? <</dialog>> <<dialog "Haru" "Sleeping">>Zzz... <</dialog>> <<dialog "You" "Disappointed">>Damn. <</dialog>> <div class="button-row"> <<regButton "haru-intro14" "Carry her to her home">> </div> </div> <<backend>>[[haru-intro14]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "residential" $hour>> <div class="content-panel"> <<dialog "Haru" "Waking up on your back">>Mmm? $player.name? <</dialog>> <<dialog "You">>Good morning, princess. <</dialog>> <<dialog "Haru" "Flustered">>Wh-why am I on your back? <</dialog>> <<dialog "You">>The janitor kicked us out. You wouldn't wake up so I just carried you. <</dialog>> <<dialog "Haru" "Flustered">>W-we were supposed to go to your house today! I'm sorry! <</dialog>> <<dialog "You">>Let's do that tomorrow, okay? You're too tired right now. <</dialog>> <<dialog "Haru" "Flustered">>B-but I was so excited... <</dialog>> <<dialog "You">>It's okay. What's another day? <</dialog>> <<dialog "Haru">>Hrrngg... This sucks. I'm so sorry. <</dialog>> <div class="button-row"> <<regButton "haru-intro15" "Keep walking">> </div> </div> <<backend>>[[haru-intro15]] <<set $hidenav = 1>> <<time 2 7>> <</backend>>
<<bg "residential" $hour>> <div class="content-panel"> <<dialog "You">>Then as punishment, you'll let me carry you all the way to your house. <</dialog>> <<dialog "Haru" "Flustered">>H-huh? Why? Put me down already! <</dialog>> <<dialog "You">>You hugging me from behind like this is nice. Plus. You have soft thighs. <</dialog>> <<dialog "Haru">>Th-then... Since you missed out on sex today... I'll let you hold my thighs until we get home. <</dialog>> She hugs you tighter. <<dialog "You">>This is nice too. <</dialog>> <<dialog "Haru">>I know, but... We could have been cuddling right now. That would have been nicer... <</dialog>> <<dialog "You">>You're really excited about this, huh? <</dialog>> <<dialog "Haru">>It's my first, okay? I may be the class rep, but I'm a woman to. I can get crushes too... and... um... I can want intimacy too. <</dialog>> <<dialog "You">>That was a confession just now, right? <</dialog>> <div class="button-row"> <<regButton "haru-intro16" "She konks your head">> </div> </div> <<backend>>[[haru-intro16]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "residential" $hour>> <div class="content-panel"> <<dialog "You">>Ow! <</dialog>> <<dialog "Haru">>I guess giving you my first kiss wasn't enough of a confession to you, huh? <</dialog>> <<dialog "You">>Sorry. Sorry. <</dialog>> <<dialog "Haru">>Hmph. I can't wait for tomorrow... <</dialog>> <<dialog "You">>Me too... <</dialog>> <<dialog "Haru">>Thank you for not getting mad. <</dialog>> <<dialog "You">>Why would I get mad? You're already disappointed. I don't have to pile onto your disappointment. <</dialog>> <<dialog "Haru">>How are you always so calm? <</dialog>> <<dialog "You">>Stressing about something won't fix the problem, so you know? I tend to ignore things that can't be helped anymore. <</dialog>> <<dialog "Haru">>Well... Just so you know, that is a very attractive trait. <</dialog>> <div class="button-row"> <<regButton "residential" "End">> </div> </div> <<backend>>[[haru3-17]] <<set $hidenav = 1>> <<set $haru.social = 11>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>Hey! Ready to go? <</dialog>> <<dialog "Haru" "Nervous">>Yes... <</dialog>> <<dialog "You">>Did you sleep enough this time? <</dialog>> <<dialog "Haru" "Hits your shoulder">>Yes! I did! Stop bringing that up! <</dialog>> <div class="button-row"> <<regButton "haru3-18" "Take her home">> </div> </div> <<backend>>[[haru3-18]] <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<dialog "Haru">>So? Um... How do we... <</dialog>> <<dialog "You">>Well... Before we start, are you sure? <</dialog>> <<dialog "Haru">>I'm ready. <</dialog>> <div class="button-row"> <<regButton "haru3-head" "Touch her head">> </div> </div> <<backend>>[[haru3-head]] <<set $hidenav = 1>> <<time 0 12>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-headpat">> <<dialog "You">>Just relax and let me take the lead, okay? <</dialog>> <<dialog "Haru">>Okay... <</dialog>> <<dialog "You">>First, let's pick up where we left off~ <</dialog>> <div class="button-row"> <<regButton "haru3-grope" "Grab her boobs">> </div> </div> <<backend>>[[haru3-grope]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-grope" 1 2>> <<dialog "You">>How does this make you feel? <</dialog>> <<dialog "Haru">>Weird... No one's ever touched me there... I kind of like it... It's making my entire body... feel weird... <</dialog>> <<dialog "You">>Then how about you let me see what's inside? <</dialog>> <div class="button-row"> <<regButton "haru3-unbutton" "Unbutton her shirt">> </div> </div> <<backend>>[[haru3-unbutton]] <<set $hidenav = 1>> <<time 0 2>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-tits">> <<dialog "Haru">>You better tell me what you think about them when you see them~ <</dialog>> <<dialog "You">>Pfft~ Is that your entire motivation for doing this? <</dialog>> <<dialog "Haru">>Maybe~ <</dialog>> <div class="button-row"> <<regButton "haru3-tits" "Play with her tits">> </div> </div> <<backend>>[[haru3-tits]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-tits" 1 5>> <<dialog "You">>Wow... <</dialog>> <<dialog "Haru" "Shy">>W-well? <</dialog>> <<dialog "You">>They're amazing~ <</dialog>> <<dialog "Haru" "Happy">>Hehe~ I knew it~ <</dialog>> <<dialog "You">>Turn around. I want to touch your butt too. <</dialog>> <<dialog "Haru" "Confused">>My butt? <</dialog>> <<dialog "You">>When I carried you last time, I touched it a few times... I can't stop thinking about it~ <</dialog>> <<dialog "Haru">>Pfft. Pervert~ <</dialog>> <div class="button-row"> <<regButton "haru3-butt" "She bends over">> </div> </div> <<backend>>[[haru3-butt]] <<set $hidenav = 1>> <<time 0 5>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-ass" 1 4>> <<dialog "You">>Your entire body is amazing, Haru. <</dialog>> <<dialog "Haru" "Shy">>R-really? <</dialog>> <<dialog "You">>Really. <</dialog>> <<dialog "Haru">>What's so great about my butt? <</dialog>> <<dialog "You">>It's soft, the shape is great, and it's attached to you. <</dialog>> <<dialog "Haru" "Laughing">>Pfft. Why wouldn't be attached to me? <</dialog>> <<dialog "You">>Haha~ It's also sandwiching this... <</dialog>> <div class="button-row"> <<regButton "haru3-rub" "Touch her pussy">> </div> </div> <<backend>>[[haru3-rub]] <<set $hidenav = 1>> <<time 0 4>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-rub" 1 5>> <<dialog "Haru" "Shy">>Hnnng~ <</dialog>> <<dialog "You">>It's moist~ <</dialog>> <<dialog "Haru">>R-really? <</dialog>> <<dialog "You">>Are you that excited? <</dialog>> <<dialog "Haru">>Y-yes... <</dialog>> <<dialog "You">>Let's get rid of this. You wouldn't want it to soak, right? <</dialog>> <div class="button-row"> <<regButton "haru3-panties" "Take her panties off">> </div> </div> <<backend>>[[haru3-panties]] <<set $hidenav = 1>> <<time 0 5>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-removepanties">> <<dialog "Haru" "Shy">>You and your excuses... <</dialog>> <<dialog "You">>Haha. You caught me~ <</dialog>> <div class="button-row"> <<regButton "haru3-finger" "Finger her">> </div> </div> <<backend>>[[haru3-finger]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-finger" 1 3>> <<dialog "Haru" "Embarrassed">>Ahh~ Th-this is so embarrassing... <</dialog>> <<dialog "You">>You're really wet, Haru~ <</dialog>> <<dialog "Haru" "Embarrassed">>S-stop... Let me make you feel good this time... <</dialog>> <<dialog "You">>Okay~ <</dialog>> <div class="button-row"> <<regButton "haru3-hj1" "Handjob">> </div> </div> <<backend>>[[haru3-hj1]] <<set $hidenav = 1>> <<time 0 3>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-hj1">> <<dialog "Haru">>It's so hard... <</dialog>> <<dialog "You">>Well, that's because you're really hot. <</dialog>> <<dialog "Haru" "Embarrassed">>H-how do I do this? <</dialog>> <<dialog "You">>Here... <</dialog>> <div class="button-row"> <<regButton "haru3-hj2" "Guide her hand">> </div> </div> <<backend>>[[haru3-hj2]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-hj2">> <<dialog "Haru">>Does this feel good? <</dialog>> <<dialog "You">>Of course. <</dialog>> <<dialog "Haru">>I learned something from... my research. I want to try it. <</dialog>> <<dialog "You">>Sure. <</dialog>> <div class="button-row"> <<regButton "haru3-bj" "Blowjob">> </div> </div> <<backend>>[[haru3-bj]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-bj" 1 3>> <<dialog "Haru">>Doesh thish feel good? <</dialog>> <<dialog "You">>Holy shit. Your mouth is so warm~ <</dialog>> <<dialog "Haru">>Ish that bad? <</dialog>> <<dialog "You">>I can't take it anymore... <</dialog>> <div class="button-row"> <<regButton "haru3-mis1" "Get up">> </div> </div> <<backend>>[[haru3-mis1]] <<set $hidenav = 1>> <<time 0 3>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-mis1">> <<dialog "Haru" "Nervous">>B-be gentle, okay? <</dialog>> <<dialog "You">>Of course. <</dialog>> <div class="button-row"> <<regButton "haru3-mis2" "Missionary">> </div> </div> <<backend>>[[haru3-mis2]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-mis" 2 4>> <<dialog "Haru">>Ahhhhh~ It's inside~ It feels amazing~ <</dialog>> <<dialog "You">>You're so tight, Haru~ <</dialog>> <div class="button-row"> <<regButton "haru3-bend" "Bend her over">> <<regButton "haru3-rcow" "Reverse Cowgirl">> <<regButton "haru3-cow" "Cowgirl">> <<regButton "haru3-sit" "Sitting">> <<regButton "haru3-final" "Finish">> </div> </div> <<backend>>[[haru3-bend]] <<set $hidenav = 1>> <<time 0 3>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-bend">> <<dialog "Haru">>Mmm~ Stop playing with it and just put it in~ <</dialog>> <<dialog "You">>It's just too beautiful. <</dialog>> <div class="button-row"> <<regButton "haru3-dog" "Doggy">> </div> </div> <<backend>>[[haru3-dog]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-doggy" 1 3>> <<dialog "Haru">>Ahhh~ Ahhh~ Ahhh~ Oh my god~ <</dialog>> <<dialog "You">>Fuck~ Haru~ <</dialog>> <div class="button-row"> <<regButton "haru3-mis2" "Missionary">> <<regButton "haru3-rcow" "Reverse Cowgirl">> <<regButton "haru3-cow" "Cowgirl">> <<regButton "haru3-sit" "Sitting">> <<regButton "haru3-final" "Finish">> </div> </div> <<backend>>[[haru3-rcow]] <<set $hidenav = 1>> <<time 0 3>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-rcow" 1 2>> <<dialog "You">>Your asshole is so perfect, too. <</dialog>> <<dialog "Haru">>Ah~ Hey! That's- Ah~ Off limits! <</dialog>> <div class="button-row"> <<regButton "haru3-mis2" "Missionary">> <<regButton "haru3-bend" "Bend her over">> <<regButton "haru3-cow" "Cowgirl">> <<regButton "haru3-sit" "Sitting">> <<regButton "haru3-final" "Finish">> </div> </div> <<backend>>[[haru3-cow]] <<set $hidenav = 1>> <<time 0 2>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-cow" 1 3>> <<dialog "You">>You look even prettier when you're bouncing. <</dialog>> <<dialog "Haru">>Ah~ Shut up... <</dialog>> <div class="button-row"> <<regButton "haru3-mis2" "Missionary">> <<regButton "haru3-bend" "Bend her over">> <<regButton "haru3-rcow" "Reverse Cowgirl">> <<regButton "haru3-sit" "Sitting">> <<regButton "haru3-final" "Finish">> </div> </div> <<backend>>[[haru3-sit]] <<set $hidenav = 1>> <<time 0 3>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-lotus" 1 3>> <<dialog "You">>Ahhh~ You're so beautiful, Haru~ <</dialog>> <<dialog "Haru">>Ahhh~ R-really? <</dialog>> <div class="button-row"> <<regButton "haru3-mis2" "Missionary">> <<regButton "haru3-bend" "Bend her over">> <<regButton "haru3-rcow" "Reverse Cowgirl">> <<regButton "haru3-cow" "Cowgirl">> <<regButton "haru3-final" "Finish">> </div> </div> <<backend>>[[haru3-final]] <<set $hidenav = 1>> <<time 0 3>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-cum">> <<dialog "You">>Ahhh~ That was awesome. <</dialog>> <<dialog "Haru" "Tired">>Mmm~ I just lost my virginity... <</dialog>> <div class="button-row"> <<regButton "haru3-end1" "Continue">> </div> </div> <<backend>>[[haru3-end1]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-final">> <<dialog "You">>Shit! I'm gonna cum! <</dialog>> <<dialog "Haru">>Ahhh~ D-don't do it inside! <</dialog>> <div class="button-row"> <<regButton "haru3-cum" "Cum">> </div> </div> <<backend>>[[haru3-cum]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "haru/haru3/haru-end">> <<dialog "You">>Are you okay? <</dialog>> <<dialog "Haru">>Yeah... I'm just embarrassed right now. <</dialog>> <<dialog "You">>It's okay, you did great. <</dialog>> <<dialog "Haru">>You swear? <</dialog>> <<dialog "You">>Cross my heart. <</dialog>> <div class="button-row"> <<regButton "haru3-end2" "Cuddle for a bit and take her home">> </div> </div> <<backend>>[[haru3-end2]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "residential" $hour>> <div class="content-panel"> <<dialog "You">>Are you sure you don't want a bath? I have my own bathroom, you know? <</dialog>> <<dialog "Haru">>I've already washed the sperm off so I should be fine. <</dialog>> <<dialog "You">>Okay... So... Umm... <</dialog>> <<dialog "Haru">>What is it? We've already had sex. You can tell me literally anything. <</dialog>> <<dialog "You">>Does this mean you're my girlfriend? <</dialog>> <<dialog "Haru" "She stops">>...Can't we just... enjoy our relationship as is? <</dialog>> <<dialog "You">>You don't want to be my girlfriend? Why? Is there something wrong with me? <</dialog>> <<dialog "Haru">>Would I give you my virginity if there was something wrong with you? I'm just... My parents expect a lot from me... I can't give you the things that girlfriends can give you... I don't want to put you in that position. <</dialog>> <<dialog "You">>...Damn. <</dialog>> <<dialog "Haru">>Why do you think I have no experience with boys? I'm sorry... <</dialog>> <<dialog "You">>No, it's okay. I understand. <</dialog>> <<dialog "Haru">>We can keep having fun like just now. From... time to time. <</dialog>> <<dialog "You">>Okay. Let's just do that then. <</dialog>> <div class="button-row"> <<regButton "haru3-end3" "She's choking up">> </div> </div> <<backend>>[[haru3-end3]] <<set $hidenav = 1>> <<time 0 45>> <</backend>>
<<bg "residential" $hour>> <div class="content-panel"> <<dialog "You">>Hey. Hey. Are you okay? <</dialog>> <<dialog "Haru" "Crying">>Do you hate me now? <</dialog>> <<dialog "You">>Of course not. It's okay. <</dialog>> <<dialog "Haru">>It's just... My parents are really strict. <</dialog>> <<dialog "You">>I understand. <</dialog>> <<dialog "Haru">>I feel like I led you on. I feel so bad... <</dialog>> <<dialog "You">>Well, to be fair, you did. You know? By giving me your virginity and all, but would I be mad about it? Hell no. <</dialog>> <<dialog "Haru" "GIggling through tears">>You're a pervert. <</dialog>> <<dialog "You">>Don't worry about me, okay? <</dialog>> <<dialog "Haru">>Okay... <</dialog>> <<dialog "You">>Now, lets get you home. <</dialog>> <div class="button-row"> <<if $gallery>> <<regButton "gallery-crud" "Back to Gallery">> <<else>> <<regButton "residential" "End">> <</if>> </div> </div> <<backend>>[[haru4-1]] <<set $hidenav = 1>> <<set $haru.quest = 3>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<dialog "Akane">>Welcome to the Doctor's Office. We heal you back to perfect health! Shall I heal you? <</dialog>> <<dialog "You">>Well... Yeah. Please. <</dialog>> <<dialog "Akane">>I'll take a look at your wounds for a few seconds... <</dialog>> <<dialog "You">>Woah. Just a few seconds? <</dialog>> After a few seconds... <<dialog "Akane">>Thank you for waiting! You are now fighting fit! We hope to see you again! <</dialog>> <<dialog "You">>That's a weird thing to say in a hospital, but thanks Nurse Joy. Haha. <</dialog>> <<dialog "Akane" "Confused">>What? No, it's me! Akane! And I'm a doctor! <</dialog>> <div class="button-row"> <<regButton "akane-office" "End">> </div> </div> <<backend>>[[akane-office]] <<time 0 1>> <<set $player.hp = $player.maxhp>> <<set $player.ep = $player.maxep>> <<set $akane.met = true>> <<set $hidenav = 0>> <</backend>>
<<nobr>> <<if $location == "doctors-office" && $akane.day <= $dayIndex && $akane.sick && $akane.quest == 0>> <<regButton "akane1-1" "Get a check up">> <</if>> <<if $location == "doctors-office" && $akane.day <= $dayIndex && $akane.quest == 1>> <<regButton "akane1-1" "Get a follow up check up">> <</if>> <</nobr>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/check-up">> <<dialog "You">>Umm... Do I really have to be naked for this? <</dialog>> <<dialog "Akane">>Hm? Have you never had a physical? <</dialog>> <<dialog "You">>W-well... <</dialog>> <<dialog "Akane" "Worried">>Hmm. It looks like you've been fighting at night, young master. You have a few bruises all over your body and you have a fever. <</dialog>> <<dialog "You">>I always fight at night though. A lot of the thugs in Shibuya operated at night. <</dialog>> <<dialog "Akane" "Worried">>Well, you have to consider that you've been stressed out lately... You know? With the moving to Kumine, and the war... <</dialog>> <<dialog "You">>Well... I did cause that war, and I guess it's been weighing on me... <</dialog>> <<dialog "Akane">>I see. I'm not a psychologist, but I do have a remedy for your problem. Although, it's not very professional. Would you like me to give you this treatment? <</dialog>> <<dialog "You">>Sure. I trust you. <</dialog>> <<dialog "Akane" "Surprised">>W-wow... You're not scared at all. <</dialog>> <<dialog "You">>You know my dad. I'm like him. We have no fear. So, do what you have to do, doctor. You're the expert. <</dialog>> <<dialog "Akane">>You've never changed. <</dialog>> <div class="button-row"> <<regButton "akane1-glove" "She gloves up">> </div> </div> <<backend>>[[akane1-glove]] <<set $hidenav = 0>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane1/glove">> <<dialog "You">>You did mention that we've met. <</dialog>> <<dialog "Akane">>You probably don't remember it, but I was a scholar that your mom supported through medical school. Because of her, I was able to get a bachelor's degree when I was 17. <</dialog>> <<dialog "You">>What? That means you entered college when you were 13. <</dialog>> <<dialog "Akane">>Yep! Your mom had me take a placement test when I was in middle school. I got my middle and high school diploma at the same time. <</dialog>> <<dialog "You">>You're a genius! No wonder you looked way too young! <</dialog>> <<dialog "Akane">>Thank you~ <</dialog>> <div class="button-row"> <<regButton "akane1-syringe" "She pulls out a syringe">> </div> </div> <<backend>>[[akane1-syringe]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<dialog "Akane">>After I got my college diploma, Miss Yuzuri threw a party at your place. <</dialog>> <<dialog "You">>Oh. So that's how you know me. <</dialog>> <<vid "akane/akane1/syringe">> <<dialog "You">>H-holy crap that syringe is huge. <</dialog>> <<dialog "Akane">>You said you had no fear. <</dialog>> <<dialog "You">>I guess I'm all talk. <</dialog>> <<dialog "Akane">>Anyways... <</dialog>> <<dialog "You">>You're just going to ignore me? <</dialog>> <<dialog "Akane">>That same day, your house was attacked by gang members. It was scary, but you took me and ran out of the place. <</dialog>> <<dialog "You">>Seriously, that syringe is scary. <</dialog>> <<dialog "Akane">>You were only 13 back then! You were 4 years younger than me, yet you were unbelievably calm. <</dialog>> <div class="button-row"> <<regButton "akane1-lube" "She points it to your dick">> </div> </div> <<backend>>[[akane1-lube]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<dialog "You">>Woah. Why are you pointing that to my dick?? <</dialog>> <<dialog "Akane">>Relax~ It's lube. <</dialog>> <<vid "akane/akane1/lube">> <<dialog "You">>Oh... Lube. Okay. That actually feels ni-- Wait, lube!? <</dialog>> <div class="button-row"> <<regButton "akane1-unbutton" "She unbuttons her top">> </div> </div> <<backend>>[[akane1-unbutton]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane1/unbutton">> <<dialog "Akane">>Sir Isao and his men fought the gangsters while you grabbed me and ran to the backyard. <</dialog>> <<dialog "You">>What is happening? <</dialog>> <<dialog "Akane">>Some gangsters were waiting by the alley we cut into and we were trapped. You told me to hide behind the dumpster! It was nerve-wracking. <</dialog>> <div class="button-row"> <<regButton "akane1-ugood" "You remember">> </div> </div> <<backend>>[[akane1-ugood]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<dialog "You">>Ah! Aka-chan! I remember it now! My mom used to call you Aka-chan. <</dialog>> <<dialog "Akane">>Hehe~ I'm glad you remember. You were so cool back then. You protected me from four grown adults while you were just 13 years old. You knocked all of them unconscious. <</dialog>> <<dialog "You">>I'm sorry. You had to go through that because of us. I thought we were the same age... I guess I develop quick. <</dialog>> <<dialog "Akane">>You know what the worst part was? You came back for me all bloody. Then you said the most infuriating thing ever. <</dialog>> <img src="img/misc/u-good.jpg" style="max-width: 80%;"> <div class="button-row"> <<regButton "akane1-boobs" "Continue">> </div> </div> <<backend>>[[akane1-boobs]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<dialog "You">>That's the worst part? Is it because I was bloody? <</dialog>> <<dialog "Akane">>I'm a doctor, $player.name. I was annoyed because you looked like a knight. <</dialog>> <<dialog "You">>I did? <</dialog>> <<dialog "Akane">>That was when I developed a little crush. <</dialog>> <<vid "akane/akane1/boobs">> <<dialog "You">>Holy shit. <</dialog>> <div class="button-row"> <<regButton "akane1-hj1" "Handjob">> </div> </div> <<backend>>[[akane1-hj1]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<dialog "Akane">>Now, it's my turn to help you. I can't let my hero be stressed, can I? <</dialog>> <<vid "akane/akane1/hj1" 0 0 "ab">> <<dialog "You">>Oh fuck. I can feel the stress leaving my body. <</dialog>> <<dialog "Akane">>Good~ <</dialog>> <div class="button-row"> <<regButton "akane1-hj2" "Intensify">> </div> </div> <<backend>>[[akane1-hj2]] <<set $hidenav = 0>> <<time 0 2>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane1/hj2" 0 0 "ab">> <<dialog "You">>Ahh~ Why does this feel so good? Too good! <</dialog>> <<dialog "Akane">>I've been thinking about this for a long time. I know how to make you feel good~ Of course, I've never done this with anyone. I'll show you something better. <</dialog>> <div class="button-row"> <<regButton "akane1-tj" "Titjob">> </div> </div> <<backend>>[[akane1-tj]] <<set $hidenav = 0>> <<time 0 2>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane1/tj" 1 2>> <<dialog "You">>Ahh~ It's too much! I'm about too... <</dialog>> <<dialog "Akane">>Cum all over my chest~ <</dialog>> <div class="button-row"> <<regButton "akane1-cum" "Cum">> </div> </div> <<backend>>[[akane1-cum]] <<set $hidenav = 0>> <<time 0 2>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane1/cum">> <<dialog "You">>Arrghhh! <</dialog>> <<dialog "Akane">>You came. I actually made you cum~ <</dialog>> <<dialog "You">>Th-that was... amazing... <</dialog>> <<dialog "Akane">>You should come back tomorrow. You're still not completely recovered. <</dialog>> <<dialog "You">>Y-yes... <</dialog>> <<dialog "Akane">>But before you leave... <</dialog>> <div class="button-row"> <<regButton "akane1-bj" "She licks off the cum">> </div> </div> <<backend>>[[akane1-bj]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane1/bj">> <<dialog "You">>Hnnggg! Ahh~ <</dialog>> <<dialog "Akane">>Just a little something to look forward to~ <</dialog>> <div class="button-row"> <<regButton "akane1-end" "Continue">> </div> </div> <<backend>>[[akane1-end]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane1/end">> <<dialog "Akane">>You can go~ I'll see you tomorrow <</dialog>> <<dialog "You">>Y-yes ma'am. <</dialog>> <<dialog "You" "Internally">>Holy shit. That was crazy. <</dialog>> <div class="button-row"> <<if $gallery>> <<regButton "gallery-crud" "Back to Gallery">> <<else>> <<regButton "hospital" "Continue">> <</if>> </div> </div> <<backend>>[[akane2-1]] <<set $hidenav = 0>> <<set $akane.quest = 1>> <<set $akane.day = $dayIndex + 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/intro1">> <<dialog "Akane">>It looks like you're all better now. <</dialog>> <<dialog "You">>I am? <</dialog>> <<dialog "Akane">>Hehe~ You are. <</dialog>> <<dialog "You">>I don't know, doc. I still feel a little stressed out. <</dialog>> <<dialog "Akane">>Oh you do? Maybe if you start calling me Akane instead of doc, I'll make you feel better~ <</dialog>> <<dialog "You">>Make me feel better, Akane. <</dialog>> <<dialog "Akane">>How obedient~ <</dialog>> <div class="button-row"> <<regButton "akane2-lube" "She takes out the lube again">> </div> </div> <<backend>>[[akane2-lube]] <<set $hidenav = 0>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/intro2">> <<dialog "Akane">>Let's get you lubed up. <</dialog>> <<dialog "You">>Phew~ This syringe is less intimidating. <</dialog>> <div class="button-row"> <<regButton "akane2-boobs" "She takes her boobs out">> </div> </div> <<backend>>[[akane2-boobs]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/boobs">> <<dialog "You">>You have gorgeous tits, Akane. <</dialog>> <<dialog "Akane">>Thanks~ <</dialog>> <div class="button-row"> <<regButton "akane2-nip" "She rubs your dick on her nipples">> </div> </div> <<backend>>[[akane2-nip]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/nip" 1 3>> <<dialog "Akane">>Ahh~ Your dick feels good on my nipples. <</dialog>> <<dialog "You">>Damn. They's not just pretty to look at. They feel great too. <</dialog>> <div class="button-row"> <<regButton "akane2-tj" "Titjob">> </div> </div> <<backend>>[[akane2-tj]] <<set $hidenav = 0>> <<time 0 3>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/tja" 1 2>> <<dialog "Akane">>It will feel better sandwiched in between the two~ <</dialog>> <<dialog "You">>F-fuck. I won't cum from this alone this time... <</dialog>> <div class="button-row"> <<regButton "akane2-bja" "Blowjob">> </div> </div> <<backend>>[[akane2-bja]] <<set $hidenav = 0>> <<time 0 2>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/bja" 1 2>> <<dialog "You">>Sh-shit! A-are you a wizard or something? <</dialog>> <<dialog "Akane">><i>Slurp~.</i> Doesh it feew that goot? <i>Slurp~.</i> <</dialog>> <<dialog "You">>Ah~ Yes~ <</dialog>> <div class="button-row"> <<regButton "akane2-hj1" "Handjob">> </div> </div> <<backend>>[[akane2-hj1]] <<set $hidenav = 0>> <<time 0 2>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/hj1">> <<dialog "Akane">>Your dick is too big~ My jaw is a bit tired~ <</dialog>> <<dialog "You">>Hehe. My bad. <</dialog>> <div class="button-row"> <<regButton "akane2-hj2" "She wants you to touch her">> </div> </div> <<backend>>[[akane2-hj2]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/hj2">> <<dialog "Akane">>It's not fair that you're the only one feeling good~ I'm pretty stressed out too, you know? <</dialog>> <<dialog "You">>Come here then. <</dialog>> <div class="button-row"> <<regButton "akane2-rub" "Rub her pussy">> </div> </div> <<backend>>[[akane2-rub]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/rub">> <<dialog "Akane">>Mmm~ It's good but... I want it in me~ <</dialog>> <<dialog "You">>We're getting there~ <</dialog>> <div class="button-row"> <<regButton "akane2-finger" "Finger her">> </div> </div> <<backend>>[[akane2-finger]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/finger">> <<dialog "Akane">>Ahh~ That's it, put it in~ <</dialog>> <<dialog "You">>You're already wet~ <</dialog>> <<dialog "Akane">>Mmm~ Make me even wetter~ <</dialog>> <div class="button-row"> <<regButton "akane2-cun1" "Eat her out">> </div> </div> <<backend>>[[akane2-cun1]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/cun1">> <<dialog "You">><i>Slurp~</i> <</dialog>> <<dialog "Akane">>Ahhhhh~ Young Master~ Keep licking~ <</dialog>> <div class="button-row"> <<regButton "akane2-penetrate1" "Let her ride you">> </div> </div> <<backend>>[[akane2-penetrate1]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<dialog "Akane">>I can't take it anymore! <</dialog>> <<vid "akane/akane2/penetrate1">> <<dialog "Akane">>Ahhh~ It's in~ <</dialog>> <<dialog "You">>Shit! You're so tight~ <</dialog>> <<dialog "Akane">>Of course, I am. I took care of my pussy for you~ <</dialog>> <<dialog "You">>Y-you're really a virgin! <</dialog>> <<dialog "Akane">>Take responsibility, okay? <</dialog>> <div class="button-row"> <<regButton "akane2-cowa" "She starts to move">> </div> </div> <<backend>>[[akane2-cowa]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/cowa1">> <<dialog "Akane">>Ahhh~ Slowly~ <</dialog>> <<dialog "You">>Fuck! It still feels way too good slow. <</dialog>> <div class="button-row"> <<regButton "akane2-cowb" "Intensify">> </div> </div> <<backend>>[[akane2-cowb]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/cowb" 1 2>> <<dialog "Akane">>Ahhh~ O-oh my god! It feels so goood~ <</dialog>> <<dialog "You">>Ohh~ That's it! Keep going! <</dialog>> <div class="button-row"> <<regButton "akane2-cowc" "She lean back">> </div> </div> <<backend>>[[akane2-cowc]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/cowc" 1 2>> <<dialog "Akane">>Ahhhhh~ I think I'm about to cuuuum~ <</dialog>> <<dialog "You">>Sh-shit... Me too... <</dialog>> <<dialog "Akane">>Come inside me~ <</dialog>> <<dialog "You">>Are you sure? <</dialog>> <<dialog "Akane">>Yessss~ Fill me uuuup~ Ahhh~ <</dialog>> <div class="button-row"> <<regButton "akane2-cum1" "Creampie">> </div> </div> <<backend>>[[akane2-cum1]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/cum1">> <<dialog "Akane">>Ahhh~ I feel so full~ <</dialog>> <<dialog "You">>That felt amazing~ <</dialog>> <div class="button-row"> <<regButton "akane2-bjb" "Make it hard again">> </div> </div> <<backend>>[[akane2-bjb]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<dialog "Akane">>Let's do it again~ Our first time can't end after one creampie, right? <</dialog>> <<dialog "You">>It definitely can't~ <</dialog>> <<vid "akane/akane2/bjb1">> <<dialog "Akane">>You got me addicted~ <</dialog>> <<dialog "You">>Luckily, I have great stamina. <</dialog>> <div class="button-row"> <<regButton "akane2-penetrate2" "Reverse Cowgirl">> </div> </div> <<backend>>[[akane2-penetrate2]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/penetrate2">> <<dialog "Akane">>Ahhh~ It's so big~ But it slid right in because of the cum~ <</dialog>> <div class="button-row"> <<regButton "akane2-rcowa" "She starts to move">> </div> </div> <<backend>>[[akane2-rcowa]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/rcowa" 1 2>> <<dialog "Akane">>Ahhh~ Your cum is a great lubricant~ <</dialog>> <<dialog "You">>That and you're slippery wet~ <</dialog>> <div class="button-row"> <<regButton "akane2-rcowb" "Make her squat">> </div> </div> <<backend>>[[akane2-rcowb]] <<set $hidenav = 1>> <<time 0 2>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/rcowb1">> <<dialog "Akane">>Ahhh~ It's so much deeper~ <</dialog>> <div class="button-row"> <<regButton "akane2-doga" "Doggy">> <<regButton "akane2-misa" "Missionary">> </div> </div> <<backend>>[[akane2-doga]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/doga" 1 2>> <<dialog "Akane">>Ahhh~ Your cum is a great lubricant~ <</dialog>> <<dialog "You">>That and you're slippery wet~ <</dialog>> <div class="button-row"> <<regButton "akane2-dogb" "Faster">> </div> </div> <<backend>>[[akane2-dogb]] <<set $hidenav = 1>> <<time 0 2>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/dogb">> <<dialog "Akane">>Ahhh~ It feels so good, $player.name~ <</dialog>> <div class="button-row"> <<regButton "akane2-rcowa" "Reverse Cowgirl">> <<regButton "akane2-misa" "Missionary">> </div> </div> <<backend>>[[akane2-misa]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/misa" 1 2>> <<dialog "You">>You look so beautiful, Akane. <</dialog>> <<dialog "Akane">>Ahhh~ We're like a married couple~ <</dialog>> <div class="button-row"> <<regButton "akane2-misb" "Harder">> </div> </div> <<backend>>[[akane2-misb]] <<set $hidenav = 1>> <<time 0 2>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/misb" 1 3>> <<dialog "Akane">>Ahhh~ That's it~ Fuuuck~ Take meeee~ <</dialog>> <<dialog "You">>Ahh~ I can't stop~ I might get addicted too~ <</dialog>> <div class="button-row"> <<regButton "akane2-rcowa" "Reverse Cowgirl">> <<regButton "akane2-doga" "Doggy">> <<regButton "akane2-cum2" "Cum">> </div> </div> <<backend>>[[akane2-cum2]] <<set $hidenav = 1>> <<time 0 3>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/cum2">> <<dialog "Akane">>Ahhh~ You came inside me twice... Now you really will have to take responsibility~ <</dialog>> <<dialog "You">>Wh-what!? <</dialog>> <<dialog "Akane">>Take care of me~ <</dialog>> <div class="button-row"> <<regButton "akane2-end1" "She puts her coat back on">> </div> </div> <<backend>>[[akane2-end1]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<dialog "Akane">>Mmm~ Where's my coat? <</dialog>> <<vid "akane/akane2/end1">> <<dialog "Akane">>Let me clean you up. <</dialog>> <div class="button-row"> <<regButton "akane2-end2" "She cleans you up">> </div> </div> <<backend>>[[akane2-end2]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> <<vid "akane/akane2/end3">> <<dialog "Akane">>I'll fix myself up and get back to work. <</dialog>> <<dialog "You">>Oh. Okay. <</dialog>> <<dialog "Akane">>Come see me again, okay? <</dialog>> <<dialog "You">>You don't even have to ask~ <</dialog>> <div class="button-row"> <<if $gallery>> <<regButton "gallery-crud" "Back to Gallery">> <<else>> <<regButton "hospital" "Continue">> <</if>> </div> </div> <<backend>>[[akane2-end2]] <<set $hidenav = 1>> <<time 0 1>> <<set $akane.quest = 2>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi-annoyed">> <<dialog "You">>... <</dialog>> <<dialog "Emi">>Hmph. <</dialog>> <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>>[[emi-quests]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi1/emi1-1">> <<dialog "Emi">>Hey, nerd... Your hand... <</dialog>> <<dialog "You">>You keep calling me a nerd. <</dialog>> <<dialog "Emi">>Well, that's because... <</dialog>> <div class="button-row"> <<regButton "emi1-2" "Some guy from the park barges in">> </div> </div> <<backend>>[[emi1-2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Delinquent" "" "enemies" "ranker4">>$player.lastname $player.name! This is payback for my boys, motherfucker! <</dialog>> <<dialog "Emi">>H-huh? <</dialog>> <<dialog "You">>Oh? Did your girlfriends tell on me? <</dialog>> <<dialog "Delinquent" "" "enemies" "ranker4">>I'll kill you! <</dialog>> <div class="button-row"> <<regButton "emi1-battlecrud" "Fight">> </div> </div> <<backend>>[[emi1-battlecrud]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<set $enemy = { name: "", type: "", level: 1, hp: 100, ep: 100, maxhp: 100, maxep: 100, str: 0, agi: 0, int: 0}>> <<set $commentary = "">> <<set $enemy.name = "Delinquent">> <<set $enemy.level = 5>> <<set $epoints = $enemy.level * 5>> <<set _base = Math.floor($epoints / 4)>> <<set _remaining = $epoints - (_base * 3)>> <<set $enemy.str = _base>> <<set $enemy.agi = _base>> <<set $enemy.int = _base>> <<for _i = 0; _i < _remaining; _i++>> <<set _r = random(1,3)>> <<switch _r>> <<case 1>><<set $enemy.str += 1>><</case>> <<case 2>><<set $enemy.agi += 1>><</case>> <<case 3>><<set $enemy.int += 1>><</case>> <</switch>> <</for>> <<set $enemy.maxhp = 90 + (10 * $enemy.level) + (2*$enemy.str)>> <<if $enemy.str >= $enemy.agi && $enemy.str >= $enemy.int>> <<set $enemy.type = "Tank">> <<elseif $enemy.agi >= $enemy.str && $enemy.agi >= $enemy.int>> <<set $enemy.type = "Striker">> <<else>> <<set $enemy.type = "Grappler">> <</if>> [[emi1-battle]][[emi1-win]][[emi1-lose]] <<set $enemy.hp = $enemy.maxhp>> <<set $pdialog = "Bring it on!">> <<set $edialog = "This is for my brothers!">> <<set $battlePassage = "emi1">> <<goto "emi1-battle">>
<<set $useableMoves = 0>><<bg "classroom">> <div class="content-panel"> <<print $commentary + "<br>">> <<combat $enemy.name $enemy.level $enemy.type "enemies" $enemy.hp $enemy.ep $enemy.maxhp $enemy.maxep "ranker4">>$edialog<</combat>> <<combat "You" $player.level "Specialist" "avatars" $player.hp $player.ep $player.maxhp $player.maxep>>$pdialog<</combat>> <div class="button-row"> <<include "battle-options">> </div> </div> <<backend>>[[battle-options]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<backend>> <<set $strMetric += 1>> <<set $agiMetric += 1>> <<set $intMetric += 1>> <<set $rewmoney = 5 + ($enemy.level * random(2,5))>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($player.int * random(35,75) * 0.01))>> <<set $player.money = $player.money + $rewmoney>> <</backend>><<bg "classroom">> <div class="content-panel"> <<print $commentary>> Delinquent gets knocked out. You get $<<print $rewmoney>> and <<print $rewxp>> exp. <div><<exp $rewxp>></div> <<vid "emi/emi1/emi1-1">> <<dialog "You">>Shit. You made me break the door. Leave before Miss Shizu comes. <</dialog>> <<dialog "Delinquent" "" "enemies" "ranker4">>O-okay... <</dialog>> <div class="button-row"> <<regButton "emi1-3" "Continue">> </div> </div> <<backend>>[[emi1-3]] <<time 0 1>> <<set $hidenav = 0>> <<set $wins += 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> Welp... You lost. I'll restore your health and energy for free! I'll send you back to before you tried talking to Emi. Try beating up some punks at the park to level up and strengthen up a bit before you retry the quest. Here's a dancing naked girl to cheer you up. <<vid "misc/eunsora">> Her name as a BJ was Eunsora but I think she quit. She did a face reveal kinda recently as Son Ye Eun. Have fun. <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>>[[emi1-2]] <<time 0 1>> <<set $player.hp = $player.maxhp>> <<set $player.ep = $player.maxep>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Emi">>So that's why your knuckles were red. You've been fighting. <</dialog>> <<dialog "You">>You got a problem with that? <</dialog>> <<dialog "Emi">>Nope. I like strong guys. <</dialog>> <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>>[[emi1-battlecrud]] <<time 0 1>> <<set $emi.quest = 1>> <<set $hidenav = 1>> <</backend>>
<<nobr>> <<if $location == "classroom" && $emi.met && $wins >= 5 && $emi.quest == 0>> <<regButton "emi1-1" "Emi notices your knuckles">> <</if>> <<if $location == "school" && $emi.social == 3 && $rio.met>> <<regButton "emi2-1" "Someone is waiting for you">> <</if>> <<if $location == "park" && $emi.quest == 2>> <<regButton "emi3-1" "Izaki and Emi are waiting for you">> <</if>> <<if $location == "classroom" && $schoolDay && $hour == 12 && $emi.quest == 3>> <<regButton "emi4-1" "Emi is getting bullied">> <</if>> <</nobr>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Emi">>So, $player.name~ I guess you're not a nerd, huh? <</dialog>> <<dialog "You">>I'm barely passing... <</dialog>> <<dialog "Emi">>Well, you know. It's the way you look. You have that innocent face. Most fighters at school look rough~ <</dialog>> <<dialog "You" "Offended">>What's that supposed to mean? <</dialog>> <<dialog "Emi">>It's a compliment. Your cute face along with the way you fight is attractive, you know? <</dialog>> <<dialog "You">>...Thanks? I guess? <</dialog>> <<dialog "Emi">>I look forward to seeing you kick some more ass~ Avoid getting hurt hurt, okay? <</dialog>> <<dialog "Shizu">>Okay class... <</dialog>> <div class="button-row"> <<regButton "classroom" "Emi smirks and turns away from you">> </div> </div> <<backend>> <<time 0 1>> <<set $emi.social = 1>> <<set $emi.day = $dayIndex + 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi1/emi1-1">> <<dialog "Emi">>Hi~ Did you fight again today? <</dialog>> <<dialog "You">>I guess... <</dialog>> <<dialog "Emi">>Why are you being cold to me? <</dialog>> <<dialog "You">>You were the one who treated me like dirt because you thought I was a nerd. <</dialog>> <<dialog "Emi">>Well, you're not, right? <</dialog>> <<dialog "You">>... <</dialog>> <<dialog "Emi">>Seriously~ Let's be friends, okay? <</dialog>> <<dialog "You">>...Sure. <</dialog>> <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>> <<time 0 1>> <<set $emi.social = 2>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi1/emi1-1">> <<dialog "Emi">>Hey, you~ <</dialog>> <<dialog "You">>Hey. <</dialog>> <<dialog "Emi">>Wanna take me out today? <</dialog>> <<dialog "You">>You asking me out? <</dialog>> <<dialog "Emi">>Maybe~ You think I'm hot, don't you? <</dialog>> <<dialog "You" "Staring at her boobs">>I do... <</dialog>> <<dialog "Emi" "Covering her chest">>Maybe next time~ <</dialog>> <<dialog "You">>Just let me know~ <</dialog>> <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>>[[emi2-1]] <<time 0 1>> <<set $emi.social = 3>> <<set $hidenav = 1>> <</backend>>
<<bg "campus" $hour>> <div class="content-panel"> <<vid "emi/emi2/emi2-1">> <<dialog "Izaki">>You $player.lastname $player.name? <</dialog>> <<dialog "You">>Nope. Not me. <</dialog>> <<dialog "Izaki">>Nope. You definitely are, <</dialog>> <<dialog "You">>Why'd you ask me if you're not gonna believe me? <</dialog>> <div class="button-row"> <<regButton "emi2-2" "He grabs your collar">> </div> </div> <<backend>>[[emi2-2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "campus" $hour>> <div class="content-panel"> <<vid "emi/emi2/emi2-2">> <<dialog "Izaki">>Look. Yamane Emi is my woman. Meet me at the park after school. You're dead if you don't show up. <</dialog>> <<dialog "You">>... <</dialog>> <div class="button-row"> <<regButton "emi2-3" "He leaves">> </div> </div> <<backend>>[[emi2-3]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "campus" $hour>> <div class="content-panel"> <<dialog "Rio">>Damn. Looks like Emi-chan got you too, huh? <</dialog>> <<dialog "You">>What do you mean? <</dialog>> <<dialog "Rio">>Like, you see, Emi-chan was like bullied in middle school so she started dating strong guys. She had totally awesome boobs too so it wasn't hard. <</dialog>> <<dialog "You">>What does that have to do with me? <</dialog>> <<dialog "Rio">>Umm. Izaki Shun, that guy just now, is like rank 25 in the entire school, but his rank is not going up because you know... There are a lot of strong people in Aoba and Emi feels threatened about it since people aren't like as scared of Izaki as the others. <</dialog>> <<dialog "You">>So she lures guys so that they'd have to fight Izaki. Izaki gets to show off his strength and Emi feels a little safer. <</dialog>> <<dialog "Rio">>Bingo. Emi saw that you were like pretty strong so she's using you to boost Izaki's uhm scary factor. <</dialog>> <<dialog "You">>What ranking are you talking about anyway? <</dialog>> <<dialog "Rio">>Right, you just transferred here. Uhh. Like, the boys in this school are ranked in terms of fighting strength. You can totally challenge other students to increase your rank. It's a clever way for the "Big Four" to not get challengers like... daily. <</dialog>> <<dialog "You">>What? Big F- You know what? Nevermind. Thank you for telling me, Rio. <</dialog>> <<dialog "Rio">>Well, you're like pretty cute so, I had to let you know. Be careful with Izaki. He's like, still totally strong. See you around, $player.name. <</dialog>> <div class="button-row"> <<regButton "school" "Continue">> </div> </div> <<backend>> <<time 0 1>> <<set $emi.social = 4>> <<set $emi.quest = 2>> <<set $hidenav = 1>> <</backend>>
<<bg "park" $hour>> <div class="content-panel"> <<dialog "Izaki">>You actually showed up. <</dialog>> <<dialog "You">>Aw. Look at you two on a date. I feel like I'm third-wheeling. <</dialog>> <<dialog "Izaki">>This motherfucker. <</dialog>> <<dialog "Emi">>Sorry about this, nerd. Put on a good show for the audience, okay? <</dialog>> <<dialog "Akagi">>... <</dialog>> <<dialog "Kishi">>... <</dialog>> <<dialog "Kuroki">>... <</dialog>> <<dialog "You">>Ohh? I see a familiar face~ <</dialog>> <div class="button-row"> <<regButton "emi3-battlecrud" "Fight">> </div> </div> <<backend>>[[emi3-battlecrud]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi-annoyed">> <<dialog "You">>Guess who I met? <</dialog>> <<dialog "Emi">>Hmph. No hard feelings, nerd~ <</dialog>> <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>>[[emi-quests]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<set $enemy = { name: "", type: "", level: 1, hp: 100, ep: 100, maxhp: 100, maxep: 100, str: 0, agi: 0, int: 0}>> <<set $commentary = "">> <<set $enemy.name = "Izaki">> <<set $enemy.level = 7>> <<set $epoints = $enemy.level * 5>> <<set _base = Math.floor($epoints / 4)>> <<set _remaining = $epoints - (_base * 3)>> <<set $enemy.str = _base>> <<set $enemy.agi = _base>> <<set $enemy.int = _base>> <<for _i = 0; _i < _remaining; _i++>> <<set _r = random(1,3)>> <<switch _r>> <<case 1>><<set $enemy.str += 1>><</case>> <<case 2>><<set $enemy.agi += 1>><</case>> <<case 3>><<set $enemy.int += 1>><</case>> <</switch>> <</for>> <<set $enemy.str = 15>> <<set $enemy.int = 10>> <<set $enemy.agi = 10>> <<set $enemy.maxhp = 90 + (10 * $enemy.level) + (2*$enemy.str)>> <<if $enemy.str >= $enemy.agi && $enemy.str >= $enemy.int>> <<set $enemy.type = "Tank">> <<elseif $enemy.agi >= $enemy.str && $enemy.agi >= $enemy.int>> <<set $enemy.type = "Striker">> <<else>> <<set $enemy.type = "Grappler">> <</if>> [[emi1-battle]][[emi1-win]][[emi1-lose]] <<set $enemy.hp = $enemy.maxhp>> <<set $pdialog = "Oh? Are you going to teach me, then?">> <<set $edialog = "You better learn not to mess with other people's girls~">> <<set $battlePassage = "emi3">> <<goto "emi3-battle">>[[emi3-battle]]
<<set $useableMoves = 0>><<set $emibattle = "Teach him a lesson, Izaki-kun!">><<bg "park" $hour>> <div class="content-panel"> <<print $commentary + "<br>">> <<combat $enemy.name $enemy.level $enemy.type "enemies" $enemy.hp $enemy.ep $enemy.maxhp $enemy.maxep>>$edialog<</combat>> <<combat "You" $player.level "Specialist" "avatars" $player.hp $player.ep $player.maxhp $player.maxep>>$pdialog<</combat>> <<dialog "Emi">>$emibattle <</dialog>> <div class="button-row"> <<include "battle-options">> </div> </div> <<backend>>[[emi3-win]][[emi3-lose]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<backend>> <<set $strMetric += 1>> <<set $agiMetric += 1>> <<set $intMetric += 1>> <<set $rewmoney = 5 + ($enemy.level * random(2,5))>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($player.int * random(35,75) * 0.01))>> <<set $player.money = $player.money + $rewmoney>> <</backend>><<bg "park" $hour>> <div class="content-panel"> <<print $commentary>> Izaki gets knocked out. You get $<<print $rewmoney>> and <<print $rewxp>> exp. <div><<exp $rewxp>></div> <div class="button-row"> <<regButton "emi3-2" "Continue">> </div> </div> <<backend>>[[emi3-2]] <<time 0 1>> <<set $hidenav = 0>> <<set $wins += 1>> <</backend>>
<<bg "park" $hour>> <div class="content-panel"> Welp... You lost. I'll restore your health and energy for free! I'll send you back to before you tried talking to Emi. Try beating up some punks at the park to level up and strengthen up a bit before you retry the quest. Here's a dancing naked girl to cheer you up. <<vid "misc/anaimiya">> Her name's Anaimiya or NaimiNaimi. Her X (formerly Twitter) profile is wild. Check it out. <div class="button-row"> <<regButton "park" "End">> </div> </div> <<backend>>[[emi3-2]] <<time 0 1>> <<set $player.hp = $player.maxhp>> <<set $player.ep = $player.maxep>> <<set $hidenav = 1>> <</backend>>
<<bg "park" $hour>> <div class="content-panel"> <<dialog "Emi">>S-stop! <</dialog>> <<vid "emi/emi3/emi3-win">> <<dialog "You">>You were talking big. This all you got? <</dialog>> <<dialog "Izaki">>I... I'm... Sorry. I was just... trying to... pro... tect... her. <</dialog>> <<dialog "Emi">>I-Izaki-kun! <</dialog>> <<dialog "You">>Not as nerdy as you thought, huh? <</dialog>> <<dialog "Emi">>Y-you're not going to hit a girl, are you? <</dialog>> <<dialog "You">>Do I have to? You'll get bullied again anyways. <</dialog>> <<dialog "Emi">>H-how... <</dialog>> <div class="button-row"> <<regButton "emi3-3" "Kuroki approaches">> </div> </div> <<backend>>[[emi3-3]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "park" $hour>> <div class="content-panel"> <<dialog "Kuroki" "Clapping">>That was a good fight~ My name is Kuroki Seiya. May I know your name? <</dialog>> <<dialog "You">>...$player.name. <</dialog>> <<dialog "Kuroki">>First, I'd like to apologize for Izaki's behavior, $player.name. He was being manipulated by this bitch. <</dialog>> <<dialog "Emi">>Y-you! <</dialog>> <div class="button-row"> <<regButton "emi3-4" "Kuroki raises his hand to hit Emi">> </div> </div> <<backend>>[[emi3-4]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "park" $hour>> <div class="content-panel"> <<dialog "Kuroki">>I don't want to hear from you. <</dialog>> <<dialog "Emi" "Scared">>K-kyaa! <</dialog>> <<dialog "You" "Catching the hand">>This is unnecessary. <</dialog>> <<dialog "Kuroki" "Internally">>S-strong... <</dialog>> <<dialog "Kishi">>This punk has a death wish. <</dialog>> <<dialog "Akagi">>Izaki was rank 25. Don't get cocky just because you beat him. <</dialog>> <<dialog "Kuroki" "Withdrawing">>Stand down. I apologize for that. I bet you want to do your own revenge. I leave her to you, $player.name. We'll take Izaki for you. <</dialog>> <<dialog "Emi">>Wh-what's gonna happen to me!? <</dialog>> <<dialog "Kuroki">>I don't know~ What I do know is you don't have a place in Aoba anymore~ A lot of people saw Izaki embarrass himself today. His protection means nothing anymore. I pity you~ <</dialog>> <div class="button-row"> <<regButton "emi3-5" "Kuroki extends an invitation">> </div> </div> <<backend>>[[emi3-5]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "park" $hour>> <div class="content-panel"> <<dialog "Kuroki">>$player.name. I implore you to join the rankers. You beat Izaki fairly easily. I'm sure you're capable of reaching the top 10~ <</dialog>> <<dialog "You">>You're the top 1? <</dialog>> <<dialog "Kuroki">>No~ That would be Sai Kyogaku~ Why? Are you interested in reaching top 1? <</dialog>> <<dialog "You">>I don't know. Not really. Sounds like a waste of time. <</dialog>> <<dialog "Kishi" "Angry">>You're really asking for it. <</dialog>> <<dialog "Akagi">>I bet he's just scared. <</dialog>> <<dialog "Kuroki">>There are perks to being a ranker~ You can find us at the rooftop in case you change your mind. Let's go. <</dialog>> <div class="button-row"> <<regButton "emi3-6" "They leave">> </div> </div> <<backend>>[[emi3-6]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "park" $hour>> <div class="content-panel"> <<dialog "You">>Now then. <</dialog>> <<dialog "Emi">>Wh-what are you going to do to me? <</dialog>> <<dialog "You">>Nothing. Like I said, the bullying is enough. Have fun with that. <</dialog>> <<dialog "Emi" "Internally">>N-no! I'm never going back to that! <</dialog>> <<dialog "Emi" "Desperate">>W-wait! A-are you not really going to join the rankers? <</dialog>> <<dialog "You">>Why would I do that? <</dialog>> <<dialog "Emi" "Angry">>Y-you have to! You just beat up my protector! This is your fault! <</dialog>> <div class="button-row"> <<regButton "emi3-7" "Glare at her">> </div> </div> <<backend>>[[emi3-7]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "park" $hour>> <div class="content-panel"> <<dialog "You">>Are you fucking kidding me? He asked for it because YOU asked ME out. I've heard about your scheme. You make Izaki beat up people to scare off classmates from bullying you. <</dialog>> <<dialog "Emi">>Y-you like me, right? You even said yes when I asked you out! <</dialog>> <<dialog "You">>Oh, you want me to replace Izaki? <</dialog>> <<dialog "Emi">>Y-yes! You get to date me. You want that, right? <</dialog>> <<dialog "You">>You want me to fight the entire school so I can kiss and hold hands with you? <</dialog>> <<dialog "Emi">>Kiss? No. I meant like... treat me on dates. That's what Izaki's been doing. <</dialog>> <<dialog "You">>You're actually joking. I don't want to talk to you anymore. <</dialog>> <div class="button-row"> <<regButton "emi3-8" "Leave">> </div> </div> <<backend>>[[emi3-8]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "park" $hour>> <div class="content-panel"> <<dialog "Emi">>W-wait! Tell me what you want! You want to kiss and hold hands? I can do that! <</dialog>> <<dialog "You">>Pfft. I can have more by asking out a girl like a normal person. Just... behave so you don't get bullied too much. <</dialog>> <<dialog "Emi" "Internally">>No way! No way! I won't go back to that! <</dialog>> <<dialog "Emi">>F-fine! I'll... I'll sleep with you! <</dialog>> <<dialog "You">>...Seriously? <</dialog>> <<dialog "Emi">>That's what you want right? I'll give it to you if you protect me. <</dialog>> <<dialog "You">>I'm not going to join the rankers for a one night stand, but... I can protect you if you want. <</dialog>> <<dialog "Emi">>Y-you have to join them! <</dialog>> <<dialog "You">>You saw how strong I was. I don't have to. I'm going home if you don't want that. <</dialog>> <<dialog "Emi">>$player.lastname $player.name! <</dialog>> <div class="button-row"> <<regButton "emi3-9" "She follows you home">> </div> </div> <<backend>>[[emi3-9]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "emi/emi3/emi3-3">> <<dialog "You">>What are you even doing here? <</dialog>> <<dialog "Emi">>I told you. If you protect me, I'll sleep with you. <</dialog>> <<dialog "You">>I don't really feel like protecting someone who tried to get me beaten up. <</dialog>> <<dialog "Emi">>Get over it. You didn't get beaten up. <</dialog>> <<dialog "You">>You're not even sorry. <</dialog>> <div class="button-row"> <<regButton "emi3-10" "She apologizes mockingly">> </div> </div> <<backend>>[[emi3-10]] <<time 0 15>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "emi/emi3/emi3-5">> <<dialog "Emi">>There you go. I apologized. <</dialog>> <<dialog "You">>...What a bitch. <</dialog>> <<dialog "Emi">>Why not just do it? You have no reason not to do it! <</dialog>> <<dialog "You">>I have plenty of reasons. This interaction making me lose any sense of lust is one of them. <</dialog>> <div class="button-row"> <<regButton "emi3-11" "She lifts up her top">> </div> </div> <<backend>>[[emi3-11]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "emi/emi3/emi3-4">> <<dialog "Emi">>How about now? <</dialog>> <<dialog "You">>Great tits, but no. <</dialog>> <<dialog "Emi">>Hmph. I get it. I bet you can't get it up so you keep refusing. <</dialog>> <<dialog "You" "Annoyed">>What? <</dialog>> <<dialog "Emi">>You probably can't pleasure a woman. You obviously took steroids to fight well but then you can't get it up anymore. What an idiot. <</dialog>> <<dialog "You" "Annoyed">>Wow. You're really pissing me off. <</dialog>> <<dialog "Emi">>Or... Maybe... You have an itty bitty little dick. <</dialog>> <<dialog "You" "Angry">>Fine. You wanted this. I can be as rough as I want, right? <</dialog>> <<dialog "Emi">>Hah! As if. <</dialog>> <div class="button-row"> <<regButton "emi3-12" "Ruin her clothes">> </div> </div> <<backend>>[[emi3-12]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "emi/emi3/emi3-6">> <<dialog "Emi" "Annoyed">>H-hey! Calm the fuck down! <</dialog>> <<dialog "You" "Annoyed">>Oh. Now you want me to calm the fuck down. Too fucking late. <</dialog>> <<dialog "Emi" "Annoyed">>Fucking insecure much? You didn't like me calling you impotent? <</dialog>> <<dialog "You" "Annoyed">>I need to shut you the fuck up. <</dialog>> <div class="button-row"> <<regButton "emi3-bj1" "Stick your dick in her mouth">> </div> </div> <<backend>>[[emi3-bj1]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "emi/emi3/emi3-7">> <<dialog "Emi" "Annoyed">>Hnnngggmmpphh! <</dialog>> <<dialog "You" "Annoyed">>That's fucking better. <</dialog>> <<dialog "Emi" "Annoyed">>Nggkk! Ngggkk! Nggkk! H-heygkk! I cckgant fucking b-breazhhee! <</dialog>> <<dialog "You" "Annoyed">>I thought it was itty bitty? <</dialog>> <<dialog "Emi" "Annoyed">>Ggkkk! Gkk! Gkggkk! <</dialog>> <<dialog "You" "Annoyed">>Alright. Let's move on to the tits you're so fucking proud of. <</dialog>> <div class="button-row"> <<regButton "emi3-tj" "Titjob">> </div> </div> <<backend>>[[emi3-tj]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "emi/emi3/emi3-9">> <<dialog "Emi" "Annoyed">>You're really enjoying yourself, huh? <</dialog>> <<dialog "You" "Annoyed">>Heh. These fucking tits are all you got going for you. <</dialog>> <<dialog "Emi" "Annoyed">>You seemed to enjoy my mouth a lot though. You fucking pervert. <</dialog>> <<dialog "You" "Annoyed">>You have a fucking point. Let me use it again then. <</dialog>> <div class="button-row"> <<regButton "emi3-bj2" "Fuck her face">> </div> </div> <<backend>>[[emi3-bj2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "emi/emi3/emi3-11">> <<dialog "Emi" "Annoyed">>Gkkk! Gkkk! Youggkk! ashholgggkkk!! <</dialog>> <<dialog "You" "Annoyed">>It feels a lot fucking better when I don't get to fucking hear you run your mouth. <</dialog>> <<dialog "Emi" "Annoyed">>Fuckkgg youggkgkk. <</dialog>> <<dialog "You" "Annoyed">>Time to test that pussy next. <</dialog>> <div class="button-row"> <<regButton "emi3-insert" "Fuck her">> </div> </div> <<backend>>[[emi3-insert]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "emi/emi3/emi3-12">> <<dialog "Emi" "Annoyed">>Fuck you. <</dialog>> <<dialog "You" "Annoyed">>Ahhh~ For someone that Izaki has ran through, you're pretty tight. <</dialog>> <<dialog "Emi" "Annoyed">>I'm a virgin, dipshit. <</dialog>> <<dialog "You">>R-really? Damn. Way to make me feel bad. <</dialog>> <div class="button-row"> <<regButton "emi3-misa" "Keep going">> </div> </div> <<backend>>[[emi3-misa]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "emi/emi3/emi3-13">> <<dialog "Emi" "Annoyed">>For... Ahhh~ S-someone who feels bad... Ahhh~ Y-you just keep on going like a fucking dog. <</dialog>> <<dialog "You" "Annoyed">>Your terrible personality is erasing the guilt. <</dialog>> <<dialog "Emi" "Annoyed">>S-still... Ahhh~ S-slow down~ <</dialog>> <<dialog "You">>Shit! I'm gonna cum inside you. <</dialog>> <<dialog "Emi" "Annoyed">>What? No! <</dialog>> <div class="button-row"> <<regButton "emi3-misb" "She kicks you away">> </div> </div> <<backend>>[[emi3-misb]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "emi/emi3/emi3-14">> <<dialog "Emi" "Annoyed">>I said stop, you fucking asshole. <</dialog>> <<dialog "You" "Annoyed">>Come here! <</dialog>> <<dialog "Emi" "Annoyed">>Don't you dare cum inside. <</dialog>> <<dialog "You">>If you do the work, maybe I won't. <</dialog>> <div class="button-row"> <<regButton "emi3-cow" "She gets on top">> </div> </div> <<backend>>[[emi3-cow]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "emi/emi3/emi3-15">> <<dialog "Emi" "Annoyed">>There. Happy? <</dialog>> <<dialog "You">>You suck at this. <</dialog>> <<dialog "Emi" "Annoyed">>You should be thankful I'm even doing this. Go on. Let me hear it. Thank you, Emi. Thank you for blessing me with your body that I don't fucking deserve. <</dialog>> <<dialog "You">>Lay down. You fucking suck at this. <</dialog>> <div class="button-row"> <<regButton "emi3-misc" "Missionary">> </div> </div> <<backend>>[[emi3-misc]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "emi/emi3/emi3-16">> <<dialog "Emi" "Annoyed">>Hnggg~ Th-this is so... Ahhh~ disgusting. You're fucking... Ahhh~ ...gross, you know that? <</dialog>> <<dialog "You">>You're the one who begged me to do this, idiot. <</dialog>> <<dialog "Emi" "Annoyed">>If you weren't such a... Hngg~ ...gorilla when you fight, I wouldn't even... Ahhh~ ...l-let you breathe next to me, you... Hnnggg~ ...pervert. <</dialog>> <<dialog "You">>If you just left me alone, you'd be happily torturing other kids with Izaki. Although, he has such a punchable face, I bet I'd kick his ass soon enough. <</dialog>> <div class="button-row"> <<regButton "emi3-misd" "She starts feeling it">> </div> </div> <<backend>>[[emi3-misd]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "emi/emi3/emi3-17">> <<dialog "Emi" "Annoyed">>Ahhh~ Ahhh~ <</dialog>> <<dialog "You">>There you go~ Feeling good~ <</dialog>> <<dialog "Emi" "Annoyed">>Th-this is... Ahhh~ ...just a biologicaaahhhh~ <</dialog>> <<dialog "You">>Fuck I'm gonna cum! <</dialog>> <<dialog "Emi" "Annoyed">>N-not inside! <</dialog>> <div class="button-row"> <<regButton "emi3-cum" "Cum on her tits">> </div> </div> <<backend>>[[emi3-cum]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "emi/emi3/emi3-18">> <<dialog "Emi" "Annoyed">>Hahhh~ Haahhh~ <</dialog>> <<dialog "You">>That felt good. <</dialog>> <<dialog "Emi" "Annoyed">>You assh-- <</dialog>> <<dialog "You">>Clean me up. <</dialog>> <div class="button-row"> <<regButton "emi3-clean" "Make her clean your dick">> </div> </div> <<backend>>[[emi3-clean]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "emi/emi3/emi3-19">> <<dialog "Emi" "Annoyed">>Hnngggmmmpphhh! <</dialog>> <<dialog "You">>There you go~ <</dialog>> <div class="button-row"> <<regButton "emi3-end1" "Continue">> </div> </div> <<backend>>[[emi3-end1]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<dialog "Emi" "Annoyed">>You better protect me from bullies, you asshole. <</dialog>> <<dialog "You">>I get it already. You want me to write you a contract? <</dialog>> <<dialog "Emi" "Annoyed">>Yes. Do that now. <</dialog>> <<dialog "You">>Seriously? <</dialog>> <div class="button-row"> <<regButton "emi3-end2" "Print out a contract">> </div> </div> <<backend>>[[emi3-end2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "emi/emi3/emi3-20">> <<dialog "You">>There. <</dialog>> <<dialog "Emi" "Annoyed">>You better not go back on your word. <</dialog>> <<dialog "You">>Fine. <</dialog>> <div class="button-row"> <<if $gallery>> <<regButton "gallery-crud" "Back to Gallery">> <<else>> <<regButton "bedroom" "She storms out">> <</if>> </div> </div> <<backend>>[[emi4-1]] <<time 0 1>> <<set $emi.quest = 3>> <<set $emi.day = $dayIndex + 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Class Bitch" "" "enemies" "idiota">>Hey~ Emi-chan~ You were so arrogant when you were dating Izaki-san. Now he's dumped you. <</dialog>> <<dialog "Class Dumbass" "" "enemies" "idiotb">>Kekeke. We never touched you because of Izaki-san. That guy's scary. But now that he's dumped you, maybe we can have a taste as well kekeke~ Right boys? <</dialog>> His lackeys jeer at Emi. <<dialog "Emi">>... Do you think you can get away with touching his ex? <</dialog>> <<dialog "Class Bitch" "" "enemies" "idiota">>This bitch is still as impertinent as ever. Should I just smack you? <</dialog>> <<dialog "Class Dumbass" "" "enemies" "idiotb">>I'm a ranker. He can't touch me without good reason since his rank is higher than mine. <</dialog>> <div class="button-row"> <<regButton "emi4-2" "Beat his ass">> </div> </div> <<backend>>[[emi4-2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>Ranker this. Ranker that. Who cares? <</dialog>> <<dialog "Class Dumbass" "" "enemies" "idiotb">>Hah? <</dialog>> All of his lackeys are already down. <<dialog "Class Bitch" "" "enemies" "idiota">>Wh-what? <</dialog>> <<dialog "Emi">>$player.name... <</dialog>> <div class="button-row"> <<regButton "emi4-battlecrud" "Fight">> </div> </div> <<backend>>[[emi4-battlecrud]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<set $enemy = { name: "", type: "", level: 1, hp: 100, ep: 100, maxhp: 100, maxep: 100, str: 0, agi: 0, int: 0}>> <<set $commentary = "">> <<set $enemy.name = "Random Dumbass">> <<set $enemy.level = 6>> <<set $epoints = $enemy.level * 5>> <<set _base = Math.floor($epoints / 4)>> <<set _remaining = $epoints - (_base * 3)>> <<set $enemy.str = _base>> <<set $enemy.agi = _base>> <<set $enemy.int = _base>> <<for _i = 0; _i < _remaining; _i++>> <<set _r = random(1,3)>> <<switch _r>> <<case 1>><<set $enemy.str += 1>><</case>> <<case 2>><<set $enemy.agi += 1>><</case>> <<case 3>><<set $enemy.int += 1>><</case>> <</switch>> <</for>> <<set $enemy.maxhp = 90 + (10 * $enemy.level) + (2*$enemy.str)>> <<if $enemy.str >= $enemy.agi && $enemy.str >= $enemy.int>> <<set $enemy.type = "Tank">> <<elseif $enemy.agi >= $enemy.str && $enemy.agi >= $enemy.int>> <<set $enemy.type = "Striker">> <<else>> <<set $enemy.type = "Grappler">> <</if>> [[emi4-battle]][[emi4-win]][[emi4-lose]] <<set $enemy.hp = $enemy.maxhp>> <<set $pdialog = "Clench your teeth.">> <<set $edialog = "Who are you!?">> <<set $battlePassage = "emi4">> <<goto "emi4-battle">>
<<set $useableMoves = 0>><<bg "classroom">> <div class="content-panel"> <<print $commentary + "<br>">> <<combat $enemy.name $enemy.level $enemy.type "enemies" $enemy.hp $enemy.ep $enemy.maxhp $enemy.maxep "idiotb">>$edialog<</combat>> <<combat "You" $player.level "Specialist" "avatars" $player.hp $player.ep $player.maxhp $player.maxep>>$pdialog<</combat>> <div class="button-row"> <<include "battle-options">> </div> </div> <<backend>>[[battle-options]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<backend>> <<set $strMetric += 1>> <<set $agiMetric += 1>> <<set $intMetric += 1>> <<set $rewmoney = 5 + ($enemy.level * random(2,5))>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($player.int * random(35,75) * 0.01))>> <<set $player.money = $player.money + $rewmoney>> <</backend>><<bg "classroom">> <div class="content-panel"> <<print $commentary>> Delinquent gets knocked out. You get $<<print $rewmoney>> and <<print $rewxp>> exp. <div><<exp $rewxp>></div> <img src="img/misc/idiotb-beat.jpg" style="max-width: 80%;"> <<dialog "Class Dumbass" "" "enemies" "idiotb">>Guhhhh! <</dialog>> <<dialog "Class Bitch" "Scared" "enemies" "idiota">>W-wha!? E-everyone? Who... <</dialog>> <<dialog "You" "Smiling">>Hey, miss. I don't like hitting girls, so why don't you do us both a favor? Keep your hands off Emi-chan~ Understand? <</dialog>> <div class="button-row"> <<regButton "emi4-3" "She's too stunned to speak">> </div> </div> <<backend>>[[emi4-3]] <<time 0 1>> <<set $hidenav = 0>> <<set $wins += 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> Welp... You lost. I'll restore your health and energy for free! I'll send you back to before you tried talking to Emi. Try beating up some punks at the park to level up and strengthen up a bit before you retry the quest. <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>> <<time 0 1>> <<set $player.hp = $player.maxhp>> <<set $player.ep = $player.maxep>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <img src="img/misc/idiota-scared.jpg" style="max-width: 60%;"> <<dialog "You">>Eh? No answer? Are you trying to make me mad? <</dialog>> <<dialog "Class Bitch" "Terrified" "enemies" "idiota">>Y-yes! I mean no! W-wait! I-I promise to never bother Emi. <</dialog>> <div class="button-row"> <<regButton "emi4-4" "She drags the unconcious boys away">> </div> </div> <<backend>>[[emi4-4]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>You okay? <</dialog>> <<dialog "Emi" "Annoyed">>Hmph. <</dialog>> <<dialog "You">>... <</dialog>> <div class="button-row"> <<regButton "emi4-5" "The class ends">> </div> </div> <<backend>>[[emi4-5]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi4/emi4-3">> <<dialog "Emi">>... <</dialog>> <<dialog "You" "Internally">>She's not going home? <</dialog>> <div class="button-row"> <<regButton "emi4-6" "Approach her">> </div> </div> <<backend>>[[emi4-6]] <<set $hour = 17>> <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi4/emi4-4">> <<dialog "You">>Hey. Are you okay? <</dialog>> <<dialog "Emi">>... <</dialog>> <<dialog "You">>Shouldn't you stop being mad at me now? <</dialog>> <<dialog "Emi" "Angry">>Y-you... You're saying I shouldn't be mad!? You ruined my life! <</dialog>> <<dialog "You">>By not getting beaten up by Izaki? <</dialog>> <<dialog "Emi" "Conflicted">>I... <</dialog>> <<dialog "You">>You tried to get me beaten up for no reason. I could have died if I wasn't that strong. I just defended myself. <</dialog>> <div class="button-row"> <<regButton "emi4-7" "She lashes out">> </div> </div> <<backend>>[[emi4-7]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi4/emi4-5">> <<dialog "Emi" "Angry">>I... I know, okay!? I hate myself! Is that what you want to hear? <</dialog>> <<dialog "You">>No. I'm sorry, $player.name. I was wrong, $player.name. That's all I want. <</dialog>> <<dialog "Emi">>I was wrong and I'm sorry. I really am. <</dialog>> <<dialog "You">>Thank you. <</dialog>> <div class="button-row"> <<regButton "emi4-8" "Hold her hand">> </div> </div> <<backend>>[[emi4-8]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi4/emi4-6">> <<dialog "Emi">>It's just scary... I know this is karma, but... I just don't want to be bullied again. It's not even my fault that my boobs are big. If they didn't torture me... I would have left them alone... <</dialog>> <<dialog "You">>It's okay. I will dominate the rankers for you. <</dialog>> <<dialog "Emi">>You don't understand... They're all freaks. The third years don't come to school anymore after Sai Kyogaku destroyed them last year... <</dialog>> <<dialog "You">>I'll be fine. I'm strong, you know? I'll protect you. So you wouldn't be afraid of leaving the classroom anymore. <</dialog>> <<dialog "Emi">>$player.name... <</dialog>> <div class="button-row"> <<regButton "emi4-kiss" "Kiss her">> </div> </div> <<backend>>[[emi4-kiss]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi4/emi4-7">> <<dialog "Emi">>Mm~ <</dialog>> <<dialog "You">>Your lips are so sweet. <</dialog>> <div class="button-row"> <<regButton "emi4-kiss2" "Intensify">> </div> </div> <<backend>>[[emi4-kiss2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi4/emi4-8">> <<dialog "Emi">>Mmm~ <</dialog>> <<dialog "You">>You're soft in all the right places. <</dialog>> <div class="button-row"> <<regButton "emi4-boobs" "Suck on her boobs">> </div> </div> <<backend>>[[emi4-boobs]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi4/emi4-9">> <<dialog "Emi">>Ahh~ <</dialog>> <<dialog "You">>It's still unbelievable how huge your tits are. <</dialog>> <div class="button-row"> <<regButton "emi4-bj" "Blowjob">> </div> </div> <<backend>>[[emi4-bj]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi4/emi4-10">> <<dialog "Emi">>Doesh it feew good? <</dialog>> <<dialog "You">>Your mouth is wet and so warm. It feels so good, Emi-chan~ <</dialog>> <div class="button-row"> <<regButton "emi4-bj2" "Intensify">> </div> </div> <<backend>>[[emi4-bj2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi4/emi4-11">> <<dialog "Emi">>You're sho big~ <</dialog>> <<dialog "You">>We should do it now, this is getting dangerous. <</dialog>> <div class="button-row"> <<regButton "emi4-doggy0" "Penetrate">> </div> </div> <<backend>>[[emi4-doggy0]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi4/emi4-doggy0">> <<dialog "Emi">>Ahh~ It's inside~ <</dialog>> <<dialog "You">>You're so tight, Emi~ <</dialog>> <div class="button-row"> <<regButton "emi4-doggy1" "Keep going">> </div> </div> <<backend>>[[emi4-doggy1]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi4/emi4-doggy1" 0 0 "ab">> <<dialog "Emi">>Ahh~ Ahh~ Ahh~ <</dialog>> <<dialog "You">>Ah~ You're so wet~ <</dialog>> <div class="button-row"> <<regButton "emi4-doggy2" "Harder">> </div> </div> <<backend>>[[emi4-doggy2]] <<time 0 2>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi4/emi4-doggy2">> <<dialog "Emi">>Ahh~ M-my~ Voice~ Is leaking out~ <</dialog>> <<dialog "You">>Nobody will hear. <</dialog>> <div class="button-row"> <<regButton "emi4-doggy3" "Raise her leg">> </div> </div> <<backend>>[[emi4-doggy3]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi4/emi4-doggy3" 0 0 "ab">> <<dialog "Emi">>Ahh~ It's so much deeper~ <</dialog>> <<dialog "You">>Fuck~ <</dialog>> <div class="button-row"> <<regButton "emi4-cow1" "Cowgirl">> <<regButton "emi4-mis1" "Missionary">> </div> </div> <<backend>>[[emi4-cow1]] <<time 0 2>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi4/emi4-cow" 1 3>> <<dialog "Emi">>Ahh~ A-am I heavy? <</dialog>> <<dialog "You">>You're light as a feather. <</dialog>> <div class="button-row"> <<regButton "emi4-doggy1" "Doggy">> <<regButton "emi4-mis1" "Missionary">> </div> </div> <<backend>>[[emi4-mis1]] <<time 0 3>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi4/emi4-mis1" 0 0 "ab">> <<dialog "Emi">>Ahh~ I like looking at you while we do it~ <</dialog>> <<dialog "You">>Ah~ Me too~ <</dialog>> <div class="button-row"> <<regButton "emi4-mis2" "Watch her boobs bounce">> </div> </div> <<backend>>[[emi4-mis2]] <<time 0 2>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi4/emi4-mis2" 0 0 "ab">> <<dialog "Emi">>Ahhh~ Yess~ <</dialog>> <<dialog "You">>You're so beautiful~ <</dialog>> <div class="button-row"> <<regButton "emi4-doggy1" "Doggy">> <<regButton "emi4-cow1" "Cowgirl">> <<regButton "emi4-hard1" "End">> </div> </div> <<backend>>[[emi4-hard1]] <<time 0 2>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi4/emi4-hard" 1 2>> <<dialog "Emi">>Ahhhh~ Like that~ Keep fucking me like that~ You're making me go crazyyyyy~ <</dialog>> <<dialog "You">>I'm close, Emi-chan~ <</dialog>> <div class="button-row"> <<regButton "emi4-hard2" "Intensify">> </div> </div> <<backend>>[[emi4-hard2]] <<time 0 2>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi4/emi4-hard3">> <<dialog "Emi">>Ahh~ I'm cummiiiing~ <</dialog>> <<dialog "You">>I'm about to cum too. <</dialog>> <div class="button-row"> <<regButton "emi4-cum" "Cum">> </div> </div> <<backend>>[[emi4-cum]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi4/emi4-cum">> <<dialog "Emi">>Ahh~ <</dialog>> <<dialog "You">>Fuck. Your tits. <</dialog>> <div class="button-row"> <<regButton "emi4-end" "Continue">> </div> </div> <<backend>>[[emi4-end]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "emi/emi4/emi4-end">> <<dialog "Emi">>I don't think I can stand. <</dialog>> <<dialog "You">>Pfft. Well, you should try your best. I hear people coming. Let's go. I'll walk you home. <</dialog>> <div class="button-row"> <<regButton "emi4-9" "Walk her home">> </div> </div> <<backend>>[[emi4-9]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "residential" $hour>> <div class="content-panel"> <<dialog "Emi">>Thanks... For walking me home. <</dialog>> <<dialog "You">>Thanks for letting me cum on your tits. <</dialog>> <<dialog "Emi" "Flustered">>S-stop that! <</dialog>> <<dialog "You">>Haha. I'll see you tomorrow, okay? <</dialog>> <<dialog "Emi">>Okay... Take care, $player.name. <</dialog>> <<dialog "You" "To yourself">>Now then... Let's steam roll those rankers. <</dialog>> <div class="button-row"> <<if $gallery>> <<regButton "gallery-crud" "Back to Gallery">> <<else>> <<regButton "residential" "End">> <</if>> </div> </div> <<backend>>[[emi4-9]] <<time 0 15>> <<set $player.rank = 25>> <<set $emi.quest = 4>> <<set $hidenav = 1>> <</backend>>
<<nobr>><<backend>> <<set $rankChallengeNo = "Challenge Rank " + ($player.rank - 1)>> <</backend>> <<if $location == "rooftop" && $hour < 19 && $player.rank > 6 && $akane.met && $emi.quest >= 4>> <<regButton "rank-battlecrud" $rankChallengeNo>> <</if>> <<if $location == "rooftop" && $hour < 19 && $player.rank == 6>> <<regButton "rank5-battlecrud" "Challenge Rank 5">> <</if>> <<if $location == "rooftop" && $hour < 19 && $player.rank == 5 && $shizu.social >= 1>> <<regButton "rank4-battlecrud" "Challenge Rank 4">> <</if>> <<if $location == "rooftop" && $hour < 19 && $player.rank == 4 && $shizu.social >= 2>> <<regButton "rank3-battlecrud" "Challenge Rank 3">> <</if>> <<if $location == "rooftop" && $hour < 19 && $player.rank == 3 && $shizu.social >= 3>> <<regButton "rank2-battlecrud" "Challenge Rank 2">> <</if>> <</nobr>>
<<set $enemy = { name: "", type: "", level: 1, hp: 100, ep: 100, maxhp: 100, maxep: 100, str: 0, agi: 0, int: 0, fname: "ranker"}>> <<set $commentary = "">> <<set $enemy.fname += random(1,5)>> <<set $enemy.name = "Ranker " + $enemy.level>> <<set $enemy.level = 27 - $player.rank>> <<set $enemy.name = "Ranker " + ($player.rank - 1)>> <<set $epoints = $enemy.level * 5>> <<set _base = Math.floor($epoints / 4)>> <<set _remaining = $epoints - (_base * 3)>> <<set $enemy.str = _base>> <<set $enemy.agi = _base>> <<set $enemy.int = _base>> <<for _i = 0; _i < _remaining; _i++>> <<set _r = random(1,3)>> <<switch _r>> <<case 1>><<set $enemy.str += 1>><</case>> <<case 2>><<set $enemy.agi += 1>><</case>> <<case 3>><<set $enemy.int += 1>><</case>> <</switch>> <</for>> <<set $enemy.maxhp = 90 + (10 * $enemy.level) + (2*$enemy.str)>> <<if $enemy.str >= $enemy.agi && $enemy.str >= $enemy.int>> <<set $enemy.type = "Tank">> <<elseif $enemy.agi >= $enemy.str && $enemy.agi >= $enemy.int>> <<set $enemy.type = "Striker">> <<else>> <<set $enemy.type = "Grappler">> <</if>> <<set $enemy.hp = $enemy.maxhp>> <<set $pdialog = "Bring it on!">> <<set $edialog = either("You wanna challenge me?", "You want my spot, huh?", "Go home before I kill you.", "Don't get cocky, new kid.")>> [[rank-battle]][[rank-win]][[rank-lose]] <<set $battlePassage = "rank">> <<goto "rank-battle">>
<<set $useableMoves = 0>><<bg "rooftop" $hour>> <div class="content-panel"> <<print $commentary + "<br>">> <<combat $enemy.name $enemy.level $enemy.type "enemies" $enemy.hp $enemy.ep $enemy.maxhp $enemy.maxep $enemy.fname>>$edialog<</combat>> <<combat "You" $player.level "Specialist" "avatars" $player.hp $player.ep $player.maxhp $player.maxep>>$pdialog<</combat>> <div class="button-row"> <<include "battle-options">> </div> </div> <<backend>>[[battle-options]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<backend>> <<set $strMetric += 1>> <<set $agiMetric += 1>> <<set $intMetric += 1>> <<set $player.rank -= 1>> <<set $rewmoney = 5 + ($enemy.level * random(2,5))>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($player.int * random(35,75) * 0.01))>> <<set $player.money = $player.money + $rewmoney>> <</backend>><<bg "rooftop" $hour>> <div class="content-panel"> <<print $commentary>> Enemy gets knocked out. You get $<<print $rewmoney>> and <<print $rewxp>> exp. <div><<exp $rewxp>></div> <<glow "white" "0.5px yellow" "8px orange" 16>>Rank Up!<</glow>> You are now Rank $player.rank. <<dialog "You">>Who's next? <</dialog>> <div class="button-row"> <<regButton "rooftop" "End">> </div> </div> <<backend>> <<set $hidenav = 0>> <<time 0 5>> <<set $wins += 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> $commentary You lost. <<dialog "Akane" "Worried">>Young Master, please be more careful! <</dialog>> <<dialog "You">>Fuck... I can't believe I lost... <</dialog>> <div class="button-row"> <<regButton "hospital" "Leave">> </div> </div> <<backend>> <<time 0 30>> <<set $player.hp = $player.maxhp>> <<set $player.ep = $player.maxep>> <<set $hidenav = 0>> <</backend>>
<<nobr>> <<if $location == "rio-class" && $emi.quest >= 3 && $rio.quest == 0 && $schoolDay>><<set $afford = $player.money >=500>> <<regButton "rio1-1" "Thank her 💵$500" $afford>> <</if>> <</nobr>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Rio">>Heyyy, new student! You totally survived. That's like... so cool. <</dialog>> <<dialog "You">>Yeah. Thanks for warning me last time. <</dialog>> <<dialog "Rio">>Totally no problem~ But like, don't I deserve like some kinda reward? <</dialog>> <<dialog "You">>What kind of reward? <</dialog>> <<dialog "Rio">>Like, take me out tonight~ <</dialog>> <<dialog "You">>A date? You want that for a reward? <</dialog>> <<dialog "Rio">>Totally~ <</dialog>> <<dialog "You">>Isn't that more of a reward for me? <</dialog>> <<dialog "Rio">>Trust me~ It's my reward~ <</dialog>> <<dialog "You">>Okay. Let's go after class then~ <</dialog>> <<dialog "Rio">>No way! I need to go change! Wait for me at the business area. <</dialog>> <<dialog "You">>Sure~ <</dialog>> <div class="button-row"> <<regButton "rio1-2" "Class ends">> </div> </div> <<backend>>[[rio1-2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "business-area" $hour>> <div class="content-panel"> <<vid "rio/rio2/rio-date1">> <<dialog "Rio">>You're here! <</dialog>> <<dialog "You">>I'm here. <</dialog>> <div class="button-row"> <<regButton "rio1-3" "Continue">> </div> </div> <<backend>>[[rio1-3]] <<set $hour = 17>> <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "business-area" $hour>> <div class="content-panel"> <<vid "rio/rio2/rio-date2">> <<dialog "Rio">>What should we do? <</dialog>> <<dialog "You">>Hmm... <</dialog>> <div class="button-row"> <<if !$rio.baseball>><<regButton "rio-date1" "Play Baseball">><</if>> <<if !$rio.arcade>><<regButton "rio-date2" "Go to the Arcade">><</if>> <<if !$rio.drink>><<regButton "rio-date3" "Have some drinks">><</if>> <<if $rio.baseball && $rio.arcade && $rio.drink>><<regButton "rio-date4" "Eat">><</if>> </div> </div> <<backend>>[[rio-date1]][[rio-date2]][[rio-date3]][[rio-date4]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "business-area" $hour>> <div class="content-panel"> <<vid "rio/rio2/rio-date3">> <<dialog "You">>You're not very good at this. <</dialog>> <<dialog "Rio">>I'm totally good at other things~ <</dialog>> You spend $25. <div class="button-row"> <<regButton "rio1-3" "Continue">> </div> </div> <<backend>>[[rio1-3]] <<player.money -= 25>> <<set $rio.baseball = true>> <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "business-area" $hour>> <div class="content-panel"> <<vid "rio/rio2/rio-date4">> <<dialog "Rio">>I'm like a great driver! Should I totally get a license? <</dialog>> <<dialog "You">>Haha! Probably not. <</dialog>> You spend $25. <div class="button-row"> <<regButton "rio1-3" "Continue">> </div> </div> <<backend>>[[rio1-3]] <<player.money -= 25>> <<set $rio.arcade = true>> <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "business-area" $hour>> <div class="content-panel"> <<vid "rio/rio2/rio-date5">> <<dialog "Rio">>Are you like trying to get me drunk? How sneaky~ <</dialog>> <<dialog "You">>You can probably outdrink me. <</dialog>> You spend $25. <div class="button-row"> <<regButton "rio1-3" "Continue">> </div> </div> <<backend>>[[rio1-3]] <<player.money -= 25>> <<set $rio.drink = true>> <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "business-area" $hour>> <div class="content-panel"> <<vid "rio/rio2/rio-date6">> <<dialog "You">>Where do you want to eat? <</dialog>> <<dialog "Rio">>Let's get like take out at your place! <</dialog>> <<dialog "You">>At my place? <</dialog>> <<dialog "Rio">>You don't want to? <</dialog>> <<dialog "You">>Let's order take out at my place. <</dialog>> <<dialog "Rio" "Amused">>Pfft. <</dialog>> <div class="button-row"> <<regButton "rio1-eat" "Continue">> </div> </div> <<backend>>[[rio1-eat]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "rio/rio2/rio-eat">> <<dialog "Rio">>This is like totally so good! <</dialog>> You spend $25. <div class="button-row"> <<regButton "rio1-offer" "She stops eating">> </div> </div> <<backend>>[[rio1-offer]] <<player.money -= 25>> <<time 0 12>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "rio/rio2/rio2-offer">> <<dialog "Rio">>Look. We had a pretty fun date. But like... I have something else in mind... <</dialog>> <<dialog "You">>Go on. <</dialog>> <<dialog "Rio">>I'm a sex worker. I know. It's like, totally shocking right? <</dialog>> <<dialog "You" "Taken aback">>It actually kind of is, but no judgement. <</dialog>> <<dialog "Rio">>I generally charge $500, but since you've spent a hundred on this date already, I can lower it down to $400. What do you say? <</dialog>> <<dialog "You">>So this is your reward, then? A new customer? <</dialog>> <<dialog "Rio">>Hehe~ <</dialog>> <div class="button-row"> <<regButton "rio1-pay" "Let's do this">> </div> </div> <<backend>>[[rio1-pay]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> You pay $400. <<vid "rio/rio2/rio2-grope">> <<dialog "You">>I noticed your body at school, you know. <</dialog>> <<dialog "Rio">>Mhmm~ Totally~ <</dialog>> <div class="button-row"> <<regButton "rio1-kiss" "Kiss her">> </div> </div> <<backend>>[[rio1-kiss]] <<player.money -= 400>> <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "rio/rio2/rio2-kiss">> <<dialog "You">>You taste great. <</dialog>> <<dialog "Rio">>Mmm~ <</dialog>> <div class="button-row"> <<regButton "rio1-finger1" "Rub her pussy">> </div> </div> <<backend>>[[rio1-finger1]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "rio/rio2/rio2-finger">> <<dialog "You">>You're so plump~ <</dialog>> <<dialog "Rio">>Ahh~ Yes~ Touch me~ <</dialog>> <div class="button-row"> <<regButton "rio1-panty" "Take her panties off">> </div> </div> <<backend>>[[rio1-panty]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "rio/rio2/rio2-finger2">> <<dialog "You">>You're so wet. <</dialog>> <<dialog "Rio">>Ahh~ <</dialog>> <div class="button-row"> <<regButton "rio1-cun" "Cunnilingus">> </div> </div> <<backend>>[[rio1-cun]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "rio/rio2/rio2-panty">> <<dialog "You">>You don't need this anymore. <</dialog>> <<dialog "Rio">>You move quick~ <</dialog>> <div class="button-row"> <<regButton "rio1-finger2" "Finger her">> </div> </div> <<backend>>[[rio1-finger2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "rio/rio2/rio2-cunni">> <<dialog "Rio">>Mhmm~ <</dialog>> <<dialog "You">>You taste good. <</dialog>> <<dialog "Rio">>Ahh~ <</dialog>> <div class="button-row"> <<regButton "rio1-bj1" "Blowjob">> </div> </div> <<backend>>[[rio1-bj1]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "rio/rio2/rio2-bj1">> <<dialog "You">>Yeah, suck it, Rio. <</dialog>> <<dialog "Rio">>Sluuurp~ <</dialog>> <div class="button-row"> <<regButton "rio1-bj2" "More">> </div> </div> <<backend>>[[rio1-bj2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "rio/rio2/rio2-bj2">> <<dialog "You">>Yeah, keep going. <</dialog>> <<dialog "Rio">>Gkk~ Gkkk~ Slurp~ <</dialog>> <div class="button-row"> <<regButton "rio1-dog" "Fuck her">> </div> </div> <<backend>>[[rio1-dog]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "rio/rio2/rio2-dog" 1 3>> <<dialog "Rio">>Ahh~ You're like so big~ <</dialog>> <<dialog "You">>Damn. You feel so good. <</dialog>> <div class="button-row"> <<regButton "rio1-cow" "Cowgirl">> <<regButton "rio1-mis" "Missionary">> </div> </div> <<backend>>[[rio1-cow]] <<time 0 3>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "rio/rio2/rio2-cow" 1 4>> <<dialog "Rio">>Ahhn~ You should totally take a picture~ I'll give you a discount~ <</dialog>> <<dialog "You">>This is already burned to my brain. <</dialog>> <div class="button-row"> <<regButton "rio1-mis" "Missionary">> </div> </div> <<backend>>[[rio1-mis]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "rio/rio2/rio2-mis" 1 3>> <<dialog "Rio">>Ahh~ You're really attacking it~ <</dialog>> <<dialog "You">>You're tight for a prostitute. <</dialog>> <<dialog "Rio">>Ahh~This pussy is premium, you know~ <</dialog>> <div class="button-row"> <<regButton "rio1-cow" "Cowgirl">> <<regButton "rio1-cum" "Cum">> </div> </div> <<backend>>[[rio1-cum]] <<time 0 3>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "rio/rio2/rio2-mis4">> <<dialog "Rio">>Fill me uuuup~ <</dialog>> <<dialog "You">>Ahhh~ Holy shit~ <</dialog>> <div class="button-row"> <<regButton "rio1-cream" "Pull out">> </div> </div> <<backend>>[[rio1-cream]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "rio/rio2/rio2-creampie">> <<dialog "Rio">>Take responsibility, okay? <</dialog>> <<dialog "You">>Hah! Fat chance. <</dialog>> <<dialog "Rio">>Mean~ <</dialog>> <div class="button-row"> <<regButton "rio1-end" "End">> </div> </div> <<backend>>[[rio1-end]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "bedroom">> <div class="content-panel"> <<vid "rio/rio2/rio2-end">> <<dialog "Rio">>Let me like rest for a bit, then I'll leave~ <</dialog>> <<dialog "You">>You're lucky your body is nice to look at. <</dialog>> <<dialog "Rio">>You're like kind of an ass, huh? I like it~ <</dialog>> <div class="button-row"> <<if $gallery>> <<regButton "gallery-crud" "Back to Gallery">> <<else>> <<regButton "bedroom" "She leaves">> <</if>> </div> </div> <<backend>>[[rio1-end]] <<time 0 1>> <<set $rio.quest = 1>> <<set $hidenav = 1>> <</backend>>
<<nobr>> <<if $shizu.quest == 0>> <<if $location == "classroom" && $player.rank ==5 && $haru.quest >= 4 && $schoolDay && $hour == 17 && $shizu.social == 0>> <<regButton "shizu-intro1" "Shizu wants to talk">> <</if>> <<if $location == "classroom" && $schoolDay && $hour == 17 && $shizu.social == 1 && $player.rank == 4 && $dayIndex >= $shizu.day>> <<regButton "shizu-intro2-1" "Shizu wants to talk again">> <</if>> <<if $location == "classroom" && $schoolDay && $hour == 17 && $shizu.social == 2 && $player.rank == 3 && $dayIndex >= $shizu.day>> <<regButton "shizu-intro3-1" "Shizu wants to talk again">> <</if>> <<if $location == "classroom" && $schoolDay && $hour == 17 && $shizu.social == 3 && $player.rank == 2 && $dayIndex >= $shizu.day>> <<regButton "shizu-intro4-1" "Shizu wants to talk again">> <</if>> <<if $location == "classroom" && $schoolDay && $hour == 17 && $shizu.social == 4 && $dayIndex >= $shizu.day>> <<regButton "shizu-intro5-1" "Shizu wants to talk again">> <</if>> <<if $location == "classroom" && $schoolDay && $hour == 17 && $shizu.social == 5 && $dayIndex >= $shizu.day>> <<regButton "shizu-intro6-1" "Hang out with Shizu">> <</if>> <<if $location == "classroom" && $schoolDay && $hour == 17 && $shizu.social == 6 && $dayIndex >= $shizu.day>> <<regButton "shizu1-1" "Hang out with Shizu">> <</if>> <</if>> <<if $shizu.quest == 1>> <</if>> <</nobr>>
<<backend>> <<set $intMetric += 1>> <<set $rewxp = 2 + Math.round($player.int * random(5,10) * 0.1)>> <</backend>><<bg "classroom">> <div class="content-panel"> You focus in class. You feel yourself getting smarter. You get +$rewxp xp. <<exp $rewxp >> <hr> <img id="title-image" src="img/misc/study.jpg" style="width: 45%;"> <div class="button-row"> <<regButton "classroom" "End">> </div> </div> <<backend>> <<set $hour += 1>> <<set $minute = 0>> <</backend>>
<<backend>> <<set $intMetric += 12 - $hour>> <<set $rewxp = 2 + Math.round($player.int * random(5,10) * 0.1)>> <<set $rewxp *= (12 - $hour)>> <</backend>><<bg "classroom">> <div class="content-panel"> You focus in class. You feel yourself getting smarter. You get +$rewxp xp. <<exp $rewxp>> <hr> <img id="title-image" src="img/misc/study.jpg" style="width: 45%;"> <div class="button-row"> <<regButton "classroom" "Lunch!">> </div> </div> <<backend>> <<set $hour = 12>> <<set $minute = 0>> <</backend>>
<<backend>> <<set $agiMetric += 1>> <<set $rewxp = 2 + Math.round($player.agi * random(5,10) * 0.1)>> <<set $player.ep = $player.ep - 50>> <</backend>><<bg "track-field" $hour>> <div class="content-panel"> <img id="title-image" src="img/misc/run-track.jpg" style="width: 45%;"> You run. You feel yourself getting more agile. You get +$rewxp xp. <<exp $rewxp >> <div class="button-row"> <<regButton "track" "Rest">> </div> </div> <<backend>> <<time 1 0>> <</backend>>
<<backend>> <<set $strMetric += 1>> <<set $rewxp = 2 + Math.round($player.str * random(5,10) * 0.1)>> <<set $player.ep = $player.ep - 50>> <</backend>><<bg "park" $hour>> <div class="content-panel"> <img id="title-image" src="img/misc/work-out.png" style="width: 45%;"> You do some pushups. You feel yourself getting stronger. You get +$rewxp xp. <<exp $rewxp >> <div class="button-row"> <<regButton "park" "Rest">> </div> </div> <<backend>> <<time 1 0>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>Hey! Ready to go? <</dialog>> <<dialog "Haru">>I can't... Sorry. I have stuff to do for the Student Council... <</dialog>> <<dialog "You" "Disappointed">>Awww. <</dialog>> <<dialog "Haru">>You can join me if you want. <</dialog>> <<dialog "You">>Won't it be awkward? I'm sure there are other officers there... <</dialog>> <<dialog "Haru">>Actually, they won't be there for a while, which is why I'm stuck with all the work... <</dialog>> <<dialog "You">>Woah. That's not cool, is it? <</dialog>> <<dialog "Haru">>They're not just ditching their work onto me. They have stuff to do outside of school. The student council in Aoba is more like a disciplinary committee, and with the Rankers being unruly, they have their hands full. <</dialog>> <<dialog "You">>If you say so... <</dialog>> <div class="button-row"> <<regButton "haru4-2" "Join her">> </div> </div> <<backend>>[[haru4-2]] <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<dialog "You" "Opening your notes">>Damn. Another failed quiz. We've been studying diligently though. <</dialog>> <<dialog "Haru">>That's because you're always distracted! You're either zoning out or molesting me. Hmph. <</dialog>> <<dialog "You">>Molesting?? That's harsh, Haru! I think some physical touch will ease this insult. <</dialog>> <<dialog "Haru">>Stop joking around, $player.name. This is serious. <</dialog>> <<dialog "You">>I just can't find the motivation for it. <</dialog>> <<dialog "Haru">>Tell you what. Let's make a deal. If you show me a test paper with good grades. I'll give you a reward. <</dialog>> <<dialog "You">>What kind of reward? <</dialog>> <<dialog "Haru">>I can't tell you that, but it will be exciting. <</dialog>> <<dialog "You">>You really know how to motivate a man. <</dialog>> <div class="button-row"> <<regButton "council" "End">> </div> </div> <<backend>>[[haru4-3]] <<time 0 12>> <<set $haru.study = true>> <<set $haru.day = $dayIndex + 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-1">> <<dialog "You">>Guess who aced the last quiz. <</dialog>> <<dialog "Haru" "Impressed">>W-wow. You actually did it. <</dialog>> <<dialog "You">>Are you proud of me? <</dialog>> <<dialog "Haru">>Of course. So proud that I'm going to give you your reward right here, right now. <</dialog>> <div class="button-row"> <<regButton "haru4-kiss1" "She kisses you">> </div> </div> <<backend>>[[haru4-kiss1]] <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-2">> <<dialog "You">>Ooh. You're getting bold. <</dialog>> <<dialog "Haru">>I told you it would be exciting for you~ <</dialog>> <div class="button-row"> <<regButton "haru4-kiss2" "Intensify">> </div> </div> <<backend>>[[haru4-kiss2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-3">> <<dialog "You">>Your tongue tastes good. <</dialog>> <<dialog "Haru">>Slurp~ <</dialog>> <div class="button-row"> <<regButton "haru4-coat" "Take her coat off">> </div> </div> <<backend>>[[haru4-coat]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-4">> <<dialog "You">>It's hot in here. Let me take that off for you. <</dialog>> <<dialog "Haru">>Pervert~ <</dialog>> <div class="button-row"> <<regButton "haru4-fondle" "Fondle her breasts">> </div> </div> <<backend>>[[haru4-fondle]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-5">> <<dialog "Haru">>Noo! You're molesting me again~ I should scream for help. <</dialog>> <<dialog "You">>Oh, I'll make you scream later. <</dialog>> <div class="button-row"> <<regButton "haru4-button" "Unbutton her blouse">> </div> </div> <<backend>>[[haru4-button]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-6">> <<dialog "Haru">>Actually, it's a little cold. <</dialog>> <<dialog "You">>Okay, I'll just unbutton it. I'll make you sweat later anyway. <</dialog>> <div class="button-row"> <<regButton "haru4-boobs" "Play with her boobs again">> </div> </div> <<backend>>[[haru4-boobs]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-7">> <<dialog "Haru">>You like my boobs that much? <</dialog>> <<dialog "You">>Yeah, I can't wait to see them. <</dialog>> <div class="button-row"> <<regButton "haru4-show" "Take them out">> </div> </div> <<backend>>[[haru4-show]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-8">> <<dialog "You">>Your nipples are hard~ <</dialog>> <<dialog "Haru">>I told you it's cold! <</dialog>> <div class="button-row"> <<regButton "haru4-nips" "Play with her nipples">> </div> </div> <<backend>>[[haru4-nips]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-9">> <<dialog "Haru">>Ahh~ <</dialog>> <<dialog "You">>Hehe. Are you sensitive because of the cold too? <</dialog>> <<dialog "Haru">>Shut up. <</dialog>> <div class="button-row"> <<regButton "haru4-bend" "Bend her over">> </div> </div> <<backend>>[[haru4-bend]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-10">> <<dialog "You">>Bend over. <</dialog>> <<dialog "Haru">>Okay~ <</dialog>> <div class="button-row"> <<regButton "haru4-ass" "Massage her butt">> </div> </div> <<backend>>[[haru4-ass]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-11">> <<dialog "Haru">>That feels great~ My ass has been sore lately. <</dialog>> <<dialog "You">>That's because you're always sitting down. <</dialog>> <div class="button-row"> <<regButton "haru4-cheeks" "Spread her cheeks">> </div> </div> <<backend>>[[haru4-cheeks]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-12">> <<dialog "Haru">>This is getting embarrassing... <</dialog>> <<dialog "You">>Ass like this is nothing to be embarrassed about. <</dialog>> <div class="button-row"> <<regButton "haru4-panties" "Pull her panties down">> </div> </div> <<backend>>[[haru4-panties]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-13">> <<dialog "You">>You're already wet. <</dialog>> <<dialog "Haru">>It's your fault! <</dialog>> <div class="button-row"> <<regButton "haru4-pussy" "Spread her pussy open">> </div> </div> <<backend>>[[haru4-pussy]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-14">> <<dialog "You">>There's my favorite hole. <</dialog>> <<dialog "Haru">>Ahh~ You're so crude! <</dialog>> <div class="button-row"> <<regButton "haru4-fin1" "Finger her">> </div> </div> <<backend>>[[haru4-fin1]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-15">> <<dialog "Haru">>Ahh~ <</dialog>> <<dialog "You">>You're so warm inside. <</dialog>> <div class="button-row"> <<regButton "haru4-legs" "Make her sit and spread her legs">> </div> </div> <<backend>>[[haru4-legs]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-16">> <<dialog "Haru">>Ahh~ This is embarrassing... <</dialog>> <<dialog "You">>Why? I just wanna see your face while you moan. <</dialog>> <<dialog "Haru">>Ahh~ That's why! <</dialog>> <div class="button-row"> <<regButton "haru4-pants" "Pull down your pants">> </div> </div> <<backend>>[[haru4-pants]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-17">> <<dialog "Haru">>I'll make you feel good too. <</dialog>> <<dialog "You">>Yes, please. <</dialog>> <div class="button-row"> <<regButton "haru4-hj" "Handjob">> </div> </div> <<backend>>[[haru4-hj]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-18">> <<dialog "Haru">>You're so hard. <</dialog>> <<dialog "You">>It's because of your soft parts. <</dialog>> <div class="button-row"> <<regButton "haru4-lj" "Lickjob">> </div> </div> <<backend>>[[haru4-lj]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-19">> <<dialog "Haru">>Slurp~ Mmm. <</dialog>> <<dialog "You">>Like a popsicle. <</dialog>> <div class="button-row"> <<regButton "haru4-bj" "Blowjob">> </div> </div> <<backend>>[[haru4-bj]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-20">> <<dialog "Haru">>Ggkk. Ggkk. <</dialog>> <<dialog "You">>I love that sound~ <</dialog>> <div class="button-row"> <<regButton "haru4-cow1" "Cowgirl">> <<regButton "haru4-rcow1" "Reverse Cowgirl">> <<regButton "haru4-dog1" "Doggy">> <<regButton "haru4-mis1" "Missionary">> </div> </div> <<backend>>[[haru4-cow1]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-21">> <<dialog "Haru">>Ahhhhh~ It's in. <</dialog>> <<dialog "You">>It sure is. <</dialog>> <div class="button-row"> <<regButton "haru4-cow2" "She moves">> </div> </div> <<backend>>[[haru4-cow2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-" 22 25>> <<dialog "Haru">>Ahhhhh~ Ahhhhh~ Ahhhhh~ <</dialog>> <<dialog "You">>Ahh~ I wanna see it go in and out~ <</dialog>> <<dialog "Haru">>Ahhhhh~ C-can you see? <</dialog>> <<dialog "You">>Yes, your pussy is so cute. <</dialog>> <div class="button-row"> <<regButton "haru4-rcow1" "Reverse Cowgirl">> <<regButton "haru4-dog1" "Doggy">> <<regButton "haru4-mis1" "Missionary">> </div> </div> <<backend>>[[haru4-rcow1]] <<time 0 4>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-26">> <<dialog "Haru">>Ahhh~ <</dialog>> <<dialog "You">>Your ass is so perfect~ <</dialog>> <div class="button-row"> <<regButton "haru4-rcow2" "She moves">> </div> </div> <<backend>>[[haru4-rcow2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-" 27 29>> <<dialog "Haru">>Ahhh~ Ahh~ Ahhh~ <</dialog>> <<dialog "You">>Holy shit, Haru! <</dialog>> <div class="button-row"> <<regButton "haru4-cow1" "Cowgirl">> <<regButton "haru4-dog1" "Doggy">> <<regButton "haru4-mis1" "Missionary">> </div> </div> <<backend>>[[haru4-dog1]] <<time 0 3>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-30">> <<dialog "You">>Let me take over. I can't let you outdo me. <</dialog>> <<dialog "Haru">>How competitive~ <</dialog>> <div class="button-row"> <<regButton "haru4-dog2" "Fuck her">> </div> </div> <<backend>>[[haru4-dog2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-" 31 33>> <<dialog "You">>What a pretty little asshole. <</dialog>> <<dialog "Haru">>Ahhh~ Don't you dare! <</dialog>> <div class="button-row"> <<regButton "haru4-cow1" "Cowgirl">> <<regButton "haru4-rcow1" "Reverse Cowgirl">> <<regButton "haru4-mis1" "Missionary">> </div> </div> <<backend>>[[haru4-mis1]] <<time 0 3>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-34">> <<dialog "Haru">>Ahhh~ I want to look at you... <</dialog>> <<dialog "You">>Alright. <</dialog>> <<dialog "Haru">>Mmm~ <</dialog>> <div class="button-row"> <<regButton "haru4-mis2" "Fuck her">> </div> </div> <<backend>>[[haru4-mis2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-" 35 37>> <<dialog "You">>Ahh~ You're so pretty. <</dialog>> <<dialog "Haru">>Ahh~ You're just saying that... <</dialog>> <div class="button-row"> <<regButton "haru4-cow1" "Cowgirl">> <<regButton "haru4-rcow1" "Reverse Cowgirl">> <<regButton "haru4-dog1" "Doggy">> <<regButton "haru4-mis3" "Make her cum">> </div> </div> <<backend>>[[haru4-mis3]] <<time 0 3>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-38">> <<dialog "Haru">>AHHH~ That's gonna make me cuuuum~ <</dialog>> <<dialog "You">>Let's cum together! <</dialog>> <div class="button-row"> <<regButton "haru4-cum" "Cum">> </div> </div> <<backend>>[[haru4-cum]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-39">> <<dialog "Haru">>Ahh~ That felt... amazing... <</dialog>> <<dialog "You">>Yeah, that felt great. <</dialog>> <div class="button-row"> <<regButton "haru4-clean" "Make her clean you up">> </div> </div> <<backend>>[[haru4-clean]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-40">> <<dialog "You">>There you go, clean me up. <</dialog>> <<dialog "Haru">>Slurrp~ Mmm~ <</dialog>> <div class="button-row"> <<regButton "haru4-end1" "Continue">> </div> </div> <<backend>>[[haru4-end1]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "council-room">> <div class="content-panel"> <<vid "haru/haru5/haru5-41">> <<dialog "You">>I should study more often. <</dialog>> <<dialog "Haru">>You should~ <</dialog>> <<dialog "You">>Okay. maybe tomorrow... It's getting late. <</dialog>> <<dialog "Haru" "Chuckling">>Pfft~ Walk me home. <</dialog>> <div class="button-row"> <<if $gallery>> <<regButton "gallery-crud" "Back to Gallery">> <<else>> <<regButton "haru4-end2" "End">> <</if>> </div> </div> <<backend>>[[haru4-end2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<backend>> <<set $haru.quest = 4>> <<set $hour = 19>> <<goto "residential">> <</backend>>
<<set $enemy = { name: "", type: "", level: 1, hp: 100, ep: 100, maxhp: 100, maxep: 100, str: 0, agi: 0, int: 0, fname: "ranker"}>> <<set $commentary = "">> <<set $enemy.fname += random(1,5)>> <<set $enemy.name = "Park Boss">> <<set $enemy.level = $parkRange + 7>> <<set $epoints = $enemy.level * 5>> <<set _base = Math.floor($epoints / 4)>> <<set _remaining = $epoints - (_base * 3)>> <<set $enemy.str = _base>> <<set $enemy.agi = _base>> <<set $enemy.int = _base>> <<for _i = 0; _i < _remaining; _i++>> <<set _r = random(1,3)>> <<switch _r>> <<case 1>><<set $enemy.str += 1>><</case>> <<case 2>><<set $enemy.agi += 1>><</case>> <<case 3>><<set $enemy.int += 1>><</case>> <</switch>> <</for>> <<set $enemy.maxhp = 90 + (10 * $enemy.level) + (2*$enemy.str)>> <<if $enemy.str >= $enemy.agi && $enemy.str >= $enemy.int>> <<set $enemy.type = "Tank">> <<elseif $enemy.agi >= $enemy.str && $enemy.agi >= $enemy.int>> <<set $enemy.type = "Striker">> <<else>> <<set $enemy.type = "Grappler">> <</if>> <<set $enemy.hp = $enemy.maxhp>> <<set $pdialog = "Bring it on!">> <<set $edialog = "You think you're hot stuff, huh?">> [[park2-battle]][[park2-win]][[park2-lose]] <<set $battlePassage = "park2">> <<goto "park2-battle">>
<<set $useableMoves = 0>><<bg "park" $hour>> <div class="content-panel"> <<print $commentary + "<br>">> <<combat $enemy.name $enemy.level $enemy.type "enemies" $enemy.hp $enemy.ep $enemy.maxhp $enemy.maxep $enemy.fname>>$edialog<</combat>> <<combat "You" $player.level "Specialist" "avatars" $player.hp $player.ep $player.maxhp $player.maxep>>$pdialog<</combat>> <div class="button-row"> <<include "battle-options">> </div> </div> <<backend>>[[battle-options]][[rank-battle]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<backend>> <<set $strMetric += 1>> <<set $agiMetric += 1>> <<set $intMetric += 1>> <<set $parkRange += 5>> <<set $rewmoney = 5 + ($enemy.level * random(2,5))>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($player.int * random(35,75) * 0.01))>> <<set $player.money = $player.money + $rewmoney>> <</backend>><<bg "park" $hour>> <div class="content-panel"> <<print $commentary>> Park Boss gets knocked out. You can now fight stronger enemies at the park. You get $<<print $rewmoney>> and <<print $rewxp>> exp. <div><<exp $rewxp>></div> <<if $daystate == "Night" && !$akane.sick && $akane.met>> <<dialog "You" "Panting">>Damn. I don't feel too good. I guess it's too cold tonight. <</dialog>><<set $akane.sick = true>><<set $akane.day = $dayIndex + 1>> <<else>><<dialog "You">>Who's next? <</dialog>><</if>> <div class="button-row"> <<regButton "park" "End">> </div> </div> <<backend>> <<set $hidenav = 0>> <<set $wins += 1>> <</backend>>
<<bg "doctors-office">> <div class="content-panel"> $commentary You lost. <<dialog "Akane" "Worried">>Young Master, please be more careful! <</dialog>> <<dialog "You">>Fuck... I can't believe I lost... <</dialog>> <div class="button-row"> <<regButton "hospital" "Leave">> </div> </div> <<backend>> <<time 0 30>> <<set $player.hp = $player.maxhp>> <<set $player.ep = $player.maxep>> <<set $hidenav = 0>> <</backend>>
<<include "akane-quests">> <<include "emi-quests">> <<include "haru-quests">> <<include "player-quests">> <<include "shizu-quests">> <<include "yuki-quests">>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-2">> <<dialog "You">>Is there a problem? Did I fail another quiz? I could have sworn I did really well though... <</dialog>> <<dialog "Shizu">>No. No. It's quite the opposite actually. You're actually improving. I would normally discourage dating, but ever since you've been involved with Miss Haru, your grades got better. <</dialog>> <<dialog "You">>Haha! No, ma'am, we aren't dating. Although, I'm glad I have your support~ <</dialog>> <<dialog "Shizu">>Oh. Excuse me. <</dialog>> <div class="button-row"> <<regButton "shizu-intro1-3" "Ask why she brought it up">> </div> </div> <<backend>>[[shizu-intro1-3]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-1">> <<dialog "You">>It's alright, Miss Shizu. But why are you bringing it up? <</dialog>> <<dialog "Shizu">>Well, I also noticed that you... You've been fighting in the Combat Rankings. <</dialog>> <<dialog "You">>You know about the Combat Rankings? <</dialog>> <<dialog "Shizu">>I do, and I think you should stop. You have a bright future ahead of you! You can actually learn and get good grades if you tried. <</dialog>> <<dialog "You">>L-look... Miss Shizu. <</dialog>> <div class="button-row"> <<regButton "shizu-intro1-4" "She interrupts you">> </div> </div> <<backend>>[[shizu-intro1-4]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Shizu">>Don't aspire to be like them! Akagi Toyo, one of the top 4... <</dialog>> <img src="img/enemies/ranker7.png" style="max-width: 40%; border-radius: 10px; outline: 2px solid white;"> <<dialog "Shizu">>...was the unbreakable Libero of the Aoba Volleyball team, but then he joined the Combat Rankings... <</dialog>> <<dialog "You">>What happened to him? <</dialog>> <<dialog "Shizu">>He was supposed to have an athletic scholarship for when he goes to college, but then he was caught fighting... His scholarship was retracted, and his future is ruined. I don't want you to end up like that. <</dialog>> <<dialog "You">>Oh. I thought he died or something. Well, rest assured, Miss Shizu, I have no scholarship to lose. <</dialog>> <<dialog "Shizu">>Th-that's not the point... <</dialog>> <<dialog "You" "Checking your watch">>Oh! I'm sorry! I have to run! Thanks for the warning, Miss Shizu! See you tomorrow! <</dialog>> <<dialog "Shizu">>W-wait! <</dialog>> <div class="button-row"> <<regButton "school" "End">> </div> </div> <<backend>>[[shizu-intro2-1]] <<time 0 1>> <<set $shizu.day = $dayIndex + 1>> <<set $shizu.social = 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Shizu">>$player.lastname. Can we talk again for a bit? <</dialog>> <<dialog "You">>...Of course. <</dialog>> <<dialog "Shizu" "Happy">>Great! <</dialog>> <div class="button-row"> <<regButton "shizu-intro2-2" "Continue">> </div> </div> <<backend>>[[shizu-intro2-2]] <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Shizu">>I'll tell you about another student. Kishi Hono. <</dialog>> <img src="img/enemies/ranker8.png" style="max-width: 40%; border-radius: 10px; outline: 2px solid white;"> <<dialog "You">>... Alright. You have my attention. <</dialog>> <<dialog "Shizu">>He's always been huge. He's naturally athletic too. He was the Power Forward for the Aoba Basketball Team. <</dialog>> <<dialog "You">>Let me guess. He fought and ruined his basketball career. <</dialog>> <<dialog "Shizu">>Yes. He had a naturally mean look. His buzz cut and bright yellow hair didn't help, so he got into a lot of fights at school. Of course, it's all self-defense! <</dialog>> <<dialog "You">>So he fought even before joining the Combat Rankings. <</dialog>> <div class="button-row"> <<regButton "shizu-intro2-3" "She explains">> </div> </div> <<backend>>[[shizu-intro2-3]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Shizu">>W-well... The Combat Ranking exists for the top fighter of the school. It's how he turned the entire school into his personal guard. <</dialog>> <<dialog "You">>How so? <</dialog>> <<dialog "Shizu">>The higher your rank is. The less challenges you get. You can't skip to challenging the Rank 1 after all. If a non-ranker challenges a ranker, all the members of the Combat Rankings will attack since they see it as a disrespect to the rank they worked hard on. <</dialog>> <<dialog "You">>So this Kishi dude joined the Combat Rankings so that he doesn't get attacked in a daily basis? Isn't that a good thing? <</dialog>> <<dialog "Shizu">>Yeah. However, after he joined. He started getting violent. Even at basketball practice. He started getting more fouls. He was confronted about it... then the incident happened. <</dialog>> <div class="button-row"> <<regButton "shizu-intro2-4" "Ask what happened">> </div> </div> <<backend>>[[shizu-intro2-4]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>What happened? <</dialog>> <<dialog "Shizu">>He almost crippled the entire Basketball Team. Aoba did not participate in the regionals that year. Kishi's dad is a shareholder of the school, so he wasn't punished. I don't want you to turn into something like that. <</dialog>> <<dialog "You">>Miss Shizu. Let me tell you something I learned as a child. Violence is a tool. Like every other tool, one must know how to properly use it. I assure you. I am capable of wielding my violence as if it's breathing. I can take care of it. <</dialog>> <<dialog "Shizu">>B-but... <</dialog>> <<dialog "You">>I'll see you tomorrow, Miss Shizu. <</dialog>> <div class="button-row"> <<regButton "school" "End">> </div> </div> <<backend>>[[shizu-intro3-1]] <<time 0 1>> <<set $shizu.day = $dayIndex + 1>> <<set $shizu.social = 2>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Shizu">>$player.lastname... <</dialog>> <<dialog "You">>Sigh. Yes, Miss Shizu. <</dialog>> <<dialog "Shizu" "Shocked">>Did you just sigh!? Y-you're already being corrupted! You just sighed! <</dialog>> <<dialog "You">>It's because you keep bugging me!! Sigh. Fine. Who are we talking about this time? <</dialog>> <div class="button-row"> <<regButton "shizu-intro3-2" "Continue">> </div> </div> <<backend>>[[shizu-intro3-2]] <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Shizu">>Ahem. I'll talk about the founder of the Combat Rankings. The Black Devil of Aoba, Kuroki Seiya. <</dialog>> <img src="img/enemies/ranker9.png" style="max-width: 40%; border-radius: 10px; outline: 2px solid white;"> <<dialog "You">>Yeah, we've met. <</dialog>> <<dialog "Shizu" "Worried">>Y-you shouldn't associate yourself with him! <</dialog>> <<dialog "You">>We're not exactly on friendly terms right now, but... <</dialog>> <<dialog "Shizu">>That person... It pains me to say this as a teacher, but he's been hopeless since he came to Aoba. <</dialog>> <<dialog "You">>Hmm? <</dialog>> <div class="button-row"> <<regButton "shizu-intro3-3" "She explains">> </div> </div> <<backend>>[[shizu-intro3-3]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Shizu">>His father, Kuroki Senju, is a... shady... character. And I think Seiya got his personality from him... <</dialog>> <<dialog "You">><i>There it is. Kuroki Senju. My dad's lackey. I knew that Kuroki Seiya was a familiar face. He should be calling me Young Master...</i> <</dialog>> <<dialog "Shizu">>Kuroki is a cruel person. He delighted in crushing the spirits of anybody that his eyes could lay upon. He even tormented my adorable student. <</dialog>> <<dialog "You">>So you have a personal vendetta against him. <</dialog>> <<dialog "Shizu">>You can say that. Kuroki is evil incarnate. He's already crippled 12 rankers. <</dialog>> <<dialog "You">>Even worse than the Rank 1? What was it again? Kai Shomaku? <</dialog>> <<dialog "Shizu">>I'll tell you if you stop fighting~ <</dialog>> <<dialog "You">>I'll see you tomorrow, Miss Shizu. <</dialog>> <<dialog "Shizu">>W-wait! <</dialog>> <div class="button-row"> <<regButton "school" "Leave">> </div> </div> <<backend>>[[shizu-intro4-1]] <<time 0 1>> <<set $shizu.day = $dayIndex + 1>> <<set $shizu.social = 3>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Shizu" "Smiling brightly">>Hey~ <</dialog>> <<dialog "You">>Sigh. Shizu-chan~ <</dialog>> <<dialog "Shizu" "Annoyed">>Ch-chan!? Y-youu! <</dialog>> <<dialog "You">>Let's just get on with it. <</dialog>> <div class="button-row"> <<regButton "shizu-intro4-2" "Continue">> </div> </div> <<backend>>[[shizu-intro4-2]] <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Shizu">>Ahem. I'll talk about the strongest student now. <</dialog>> <<dialog "You">>You caved, huh? <</dialog>> <<dialog "Shizu">>Sh-shut up! Ahem. Sorry... Uhm. The strongest student in Aoba is Sai... Kyogaku Sai. <</dialog>> <img src="img/enemies/ranker10.png" style="max-width: 40%; border-radius: 10px; outline: 2px solid white;"> <<dialog "You">>Sai Kyo- what again? <</dialog>> <<dialog "Shizu">>Kyogaku. <</dialog>> <<dialog "You">>Right. I've actually never seen him before. <</dialog>> <div class="button-row"> <<regButton "shizu-intro4-3" "She tells you more">> </div> </div> <<backend>>[[shizu-intro4-3]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Shizu">>He doesn't come to class anymore. He often goes out to fight other schools to establish his dominance. He doesn't get suspended because Kuroki is backing him. <</dialog>> <<dialog "You">>You did mention that Kuroki created the Rankings for him. Why would he do that? <</dialog>> <<dialog "Shizu">>Honestly... Sai is my adorable student. He was bullied as a first year... by Kuroki. <</dialog>> <<dialog "You">>The strongest was bullied? <</dialog>> <<dialog "Shizu">>Yep. He came to me for help, but Kuroki's dad is too powerful. <</dialog>> <<dialog "You">><i>Pfft. The Sawada family could destroy the entire Kuroki clan after lunch and still make it home by dinner.</i> <</dialog>> <div class="button-row"> <<regButton "shizu-intro4-4" "Continue">> </div> </div> <<backend>>[[shizu-intro4-4]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Shizu">>The school officials ignored my petition to suspend Kuroki, so for the time being, I brought Sai to a gym so he could learn to defend himself. <</dialog>> <<dialog "You">>So, that's how he learned how to fight. <</dialog>> <<dialog "Shizu">>He was gifted. Incredibly gifted. But they kept picking on him. It all changed when the third years tried to... rape me. <</dialog>> <<dialog "You">>Wh-what!? <</dialog>> <<dialog "Shizu">>They didn't get to! Sai stopped them. They only did it to spite Sai. They beat him up then tried to rape me in front of him. Then it happened. An indescribable rage consumed my adorable student. He turned into a monster. <</dialog>> <<dialog "You">>Emi did mention that the third years stopped coming to school last year... <</dialog>> <div class="button-row"> <<regButton "shizu-intro4-5" "Continue">> </div> </div> <<backend>>[[shizu-intro4-5]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Shizu">>He rushed to Kuroki, but sadly he was too tired to even pick a fight with him. <</dialog>> <<dialog "You">>Then why did Kuroki create the Combat Rankings for Kyogaku? <</dialog>> <<dialog "Shizu">>Sai defeated 43 students in one night. Kuroki saw his potential and became a fanatic. He's convinced Sai to take over Kumine. <</dialog>> <<dialog "You">>Hohh? We can't have that then~ I'm sorry, teach. I'm going to have to fight him. <</dialog>> <<dialog "Shizu">>Y-you can't! He's too strong for you... <</dialog>> <<dialog "You">>See you tomorrow, Shizu-chan~ <</dialog>> <<dialog "Shizu" "Upset">>Wait! $player.name! This kid! Seriously!! <</dialog>> <div class="button-row"> <<regButton "school" "End">> </div> </div> <<backend>>[[shizu-intro5-1]] <<set $shizu.day = $dayIndex + 1>> <<set $shizu.social = 4>> <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<set $enemy = { name: "", type: "", level: 1, hp: 100, ep: 100, maxhp: 100, maxep: 100, str: 0, agi: 0, int: 0, fname: "ranker"}>> <<set $commentary = "">> <<set $enemy.fname = "izaki-01">> <<set $enemy.level = 22>> <<set $enemy.name = "Izaki">> <<set $epoints = $enemy.level * 5>> <<set $enemy.str = 50>> <<set $enemy.int = 25>> <<set $enemy.agi = 35>> <<set $enemy.maxhp = 90 + (10 * $enemy.level) + (2*$enemy.str)>> <<if $enemy.str >= $enemy.agi && $enemy.str >= $enemy.int>> <<set $enemy.type = "Tank">> <<elseif $enemy.agi >= $enemy.str && $enemy.agi >= $enemy.int>> <<set $enemy.type = "Striker">> <<else>> <<set $enemy.type = "Grappler">> <</if>> <<set $enemy.hp = $enemy.maxhp>> <<set $pdialog = "I guess you climbed the ranks before I joined, huh?">> <<set $edialog = "We meet again. I've grown stronger since last time. I even climbed the ranks. It's payback time, bitch.">> [[rank5-battle]][[rank5-win]][[rank5-lose]] <<set $battlePassage = "rank5">> <<goto "rank5-battle">>
<<set $enemy = { name: "", type: "", level: 1, hp: 100, ep: 100, maxhp: 100, maxep: 100, str: 0, agi: 0, int: 0, fname: "ranker"}>> <<set $commentary = "">> <<set $enemy.fname = "akagi">> <<set $enemy.level = 23>> <<set $enemy.name = "Akagi">> <<set $epoints = $enemy.level * 5>> <<set $enemy.str = 40>> <<set $enemy.int = 18>> <<set $enemy.agi = 57>> <<set $enemy.maxhp = 90 + (10 * $enemy.level) + (2*$enemy.str)>> <<if $enemy.str >= $enemy.agi && $enemy.str >= $enemy.int>> <<set $enemy.type = "Tank">> <<elseif $enemy.agi >= $enemy.str && $enemy.agi >= $enemy.int>> <<set $enemy.type = "Striker">> <<else>> <<set $enemy.type = "Grappler">> <</if>> <<set $enemy.hp = $enemy.maxhp>> <<set $pdialog = "Nothing big about you, shrimpy.">> <<set $edialog = "Yo~ I am the first member of the Big Four, Akagi. Good job making it to Rank 5. Ready to take me on?">> [[rank4-battle]][[rank4-win]][[rank4-lose]] <<set $battlePassage = "rank4">> <<goto "rank4-battle">>
<<set $enemy = { name: "", type: "", level: 1, hp: 100, ep: 100, maxhp: 100, maxep: 100, str: 0, agi: 0, int: 0, fname: "ranker"}>> <<set $commentary = "">> <<set $enemy.fname = "kishi">> <<set $enemy.level = 24>> <<set $enemy.name = "Kishi">> <<set $epoints = $enemy.level * 5>> <<set $enemy.str = 55>> <<set $enemy.int = 25>> <<set $enemy.agi = 40>> <<set $enemy.maxhp = 90 + (10 * $enemy.level) + (2*$enemy.str)>> <<if $enemy.str >= $enemy.agi && $enemy.str >= $enemy.int>> <<set $enemy.type = "Tank">> <<elseif $enemy.agi >= $enemy.str && $enemy.agi >= $enemy.int>> <<set $enemy.type = "Striker">> <<else>> <<set $enemy.type = "Grappler">> <</if>> <<set $enemy.hp = $enemy.maxhp>> <<set $pdialog = "Jesus, you're loud.">> <<set $edialog = "HAHAHA! That Akagi lost, huh? I guess you're pretty quick, huh? I told him he should gain some muscle, but he wouldn't listen. Fight me next!">> [[rank3-battle]][[rank3-win]][[rank3-lose]] <<set $battlePassage = "rank3">> <<goto "rank3-battle">>
<<set $enemy = { name: "", type: "", level: 1, hp: 100, ep: 100, maxhp: 100, maxep: 100, str: 0, agi: 0, int: 0, fname: "ranker"}>> <<set $commentary = "">> <<set $enemy.fname = "kuroki">> <<set $enemy.level = 25>> <<set $enemy.name = "Kuroki">> <<set $epoints = $enemy.level * 5>> <<set $enemy.str = 35>> <<set $enemy.int = 55>> <<set $enemy.agi = 35>> <<set $enemy.maxhp = 90 + (10 * $enemy.level) + (2*$enemy.str)>> <<if $enemy.str >= $enemy.agi && $enemy.str >= $enemy.int>> <<set $enemy.type = "Tank">> <<elseif $enemy.agi >= $enemy.str && $enemy.agi >= $enemy.int>> <<set $enemy.type = "Striker">> <<else>> <<set $enemy.type = "Grappler">> <</if>> <<set $enemy.hp = $enemy.maxhp>> <<set $pdialog = "You're funny, Seiya.">> <<set $edialog = "Oya~ You beat the muscle-head too. Sadly, I cannot allow you to challenge the king. He's extremely busy right now.">> [[rank2-battle]][[rank2-win]][[rank2-lose]] <<set $battlePassage = "rank2">> <<goto "rank2-battle">>
<<set $useableMoves = 0>><<bg "rooftop" $hour>> <div class="content-panel"> <<print $commentary + "<br>">> <<combat $enemy.name $enemy.level $enemy.type "avatars" $enemy.hp $enemy.ep $enemy.maxhp $enemy.maxep $enemy.fname>>$edialog<</combat>> <<combat "You" $player.level "Specialist" "avatars" $player.hp $player.ep $player.maxhp $player.maxep>>$pdialog<</combat>> <div class="button-row"> <<include "battle-options">> </div> </div> <<backend>>[[battle-options]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<backend>> <<set $strMetric += 1>> <<set $agiMetric += 1>> <<set $intMetric += 1>> <<set $player.rank = 5>> <<set $rewmoney = 5 + ($enemy.level * random(2,5))>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($player.int * random(35,75) * 0.01))>> <<set $player.money = $player.money + $rewmoney>> <</backend>><<bg "rooftop" $hour>> <div class="content-panel"> <<print $commentary>> Enemy gets knocked out. You get $<<print $rewmoney>> and <<print $rewxp>> exp. <div><<exp $rewxp>></div> <<vid "emi/emi3/emi3-win">> <<dialog "Izaki">>Wh-why? Why can't I... beat you? Cough. All I want... is to... protect... her... <</dialog>> <<dialog "You">>You're not protecting her by bullying other kids... You're just making it worse for her. You antagonized the entire student body. <</dialog>> <<dialog "Izaki">>I... see... <</dialog>> <<glow "white" "0.5px yellow" "8px orange" 16>>Rank Up!<</glow>> You are now Rank $player.rank. <div class="button-row"> <<regButton "rooftop" "He passes out">> </div> </div> <<backend>> <<set $hidenav = 0>> <<time 0 5>> <<set $wins += 1>> <</backend>>
<<bg "rooftop" $hour>> <div class="content-panel"> Welp... You lost. I'll restore your health and energy for free! I'll send you back to before you tried challenging Izaki. Try beating up some punks at the park to level up and strengthen up a bit before you retry the quest. <div class="button-row"> <<regButton "rooftop" "End">> </div> </div> <<backend>> <<time 0 1>> <<set $player.hp = $player.maxhp>> <<set $player.ep = $player.maxep>> <<set $hidenav = 1>> <</backend>>
<<set $useableMoves = 0>><<bg "rooftop" $hour>> <div class="content-panel"> <<print $commentary + "<br>">> <<combat $enemy.name $enemy.level $enemy.type "avatars" $enemy.hp $enemy.ep $enemy.maxhp $enemy.maxep $enemy.fname>>$edialog<</combat>> <<combat "You" $player.level "Specialist" "avatars" $player.hp $player.ep $player.maxhp $player.maxep>>$pdialog<</combat>> <div class="button-row"> <<include "battle-options">> </div> </div> <<backend>>[[battle-options]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<backend>> <<set $strMetric += 1>> <<set $agiMetric += 1>> <<set $intMetric += 1>> <<set $player.rank = 4>> <<set $rewmoney = 5 + ($enemy.level * random(2,5))>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($player.int * random(35,75) * 0.01))>> <<set $player.money = $player.money + $rewmoney>> <</backend>><<bg "rooftop" $hour>> <div class="content-panel"> <<print $commentary>> Enemy gets knocked out. You get $<<print $rewmoney>> and <<print $rewxp>> exp. <div><<exp $rewxp>></div> <<glow "white" "0.5px yellow" "8px orange" 16>>Rank Up!<</glow>> You are now Rank $player.rank. <<dialog "Akagi">>H-how are you... faster... than me? <</dialog>> <<dialog "You">>Stick to basketball. <</dialog>> <<dialog "Akagi">>I was... a volley... ball... player... <</dialog>> <<dialog "You">>Whatever, man. <</dialog>> <div class="button-row"> <<regButton "rooftop" "He passes out">> </div> </div> <<backend>> <<set $hidenav = 0>> <<time 0 5>> <<set $wins += 1>> <</backend>>
<<bg "rooftop" $hour>> <div class="content-panel"> Welp... You lost. I'll restore your health and energy for free! I'll send you back to before you tried challenging Akagi. Try beating up some punks at the park to level up and strengthen up a bit before you retry the quest. <div class="button-row"> <<regButton "rooftop" "End">> </div> </div> <<backend>> <<time 0 1>> <<set $player.hp = $player.maxhp>> <<set $player.ep = $player.maxep>> <<set $hidenav = 1>> <</backend>>
<<set $useableMoves = 0>><<bg "rooftop" $hour>> <div class="content-panel"> <<print $commentary + "<br>">> <<combat $enemy.name $enemy.level $enemy.type "avatars" $enemy.hp $enemy.ep $enemy.maxhp $enemy.maxep $enemy.fname>>$edialog<</combat>> <<combat "You" $player.level "Specialist" "avatars" $player.hp $player.ep $player.maxhp $player.maxep>>$pdialog<</combat>> <div class="button-row"> <<include "battle-options">> </div> </div> <<backend>>[[battle-options]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<backend>> <<set $strMetric += 1>> <<set $agiMetric += 1>> <<set $intMetric += 1>> <<set $player.rank = 3>> <<set $rewmoney = 5 + ($enemy.level * random(2,5))>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($player.int * random(35,75) * 0.01))>> <<set $player.money = $player.money + $rewmoney>> <</backend>><<bg "rooftop" $hour>> <div class="content-panel"> <<print $commentary>> Enemy gets knocked out. You get $<<print $rewmoney>> and <<print $rewxp>> exp. <div><<exp $rewxp>></div> <<glow "white" "0.5px yellow" "8px orange" 16>>Rank Up!<</glow>> You are now Rank $player.rank. <<dialog "Kishi">>H-haha... You're... a monster... <</dialog>> <<dialog "You">>You didn't work out enough, dude. And stop fucking laughing so loud, Jesus. <</dialog>> <div class="button-row"> <<regButton "rooftop" "He passes out">> </div> </div> <<backend>> <<set $hidenav = 0>> <<time 0 5>> <<set $wins += 1>> <</backend>>
<<bg "rooftop" $hour>> <div class="content-panel"> Welp... You lost. I'll restore your health and energy for free! I'll send you back to before you tried challenging Kishi. Try beating up some punks at the park to level up and strengthen up a bit before you retry the quest. <div class="button-row"> <<regButton "rooftop" "End">> </div> </div> <<backend>> <<time 0 1>> <<set $player.hp = $player.maxhp>> <<set $player.ep = $player.maxep>> <<set $hidenav = 1>> <</backend>>
<<set $useableMoves = 0>><<bg "rooftop" $hour>> <div class="content-panel"> <<print $commentary + "<br>">> <<combat $enemy.name $enemy.level $enemy.type "avatars" $enemy.hp $enemy.ep $enemy.maxhp $enemy.maxep $enemy.fname>>$edialog<</combat>> <<combat "You" $player.level "Specialist" "avatars" $player.hp $player.ep $player.maxhp $player.maxep>>$pdialog<</combat>> <div class="button-row"> <<include "battle-options">> </div> </div> <<backend>>[[battle-options]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<backend>> <<set $strMetric += 1>> <<set $agiMetric += 1>> <<set $intMetric += 1>> <<set $player.rank = 2>> <<set $rewmoney = 5 + ($enemy.level * random(2,5))>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($player.int * random(35,75) * 0.01))>> <<set $player.money = $player.money + $rewmoney>> <</backend>><<bg "rooftop" $hour>> <div class="content-panel"> <<print $commentary>> Enemy gets knocked out. You get $<<print $rewmoney>> and <<print $rewxp>> exp. <div><<exp $rewxp>></div> <<glow "white" "0.5px yellow" "8px orange" 16>>Rank Up!<</glow>> You are now Rank $player.rank. <<dialog "Kuroki">>Wh-who are you? <</dialog>> <<dialog "You">>You really should know who I am by now. You'll get killed at this point. <</dialog>> <<dialog "You">>... <</dialog>> <<dialog "You">>Oh. He passed out. <</dialog>> <div class="button-row"> <<regButton "rooftop" "End">> </div> </div> <<backend>> <<set $hidenav = 0>> <<time 0 5>> <<set $wins += 1>> <</backend>>
<<bg "rooftop" $hour>> <div class="content-panel"> Welp... You lost. I'll restore your health and energy for free! I'll send you back to before you tried challenging Kuroki. Try beating up some punks at the park to level up and strengthen up a bit before you retry the quest. <div class="button-row"> <<regButton "rooftop" "End">> </div> </div> <<backend>> <<time 0 1>> <<set $player.hp = $player.maxhp>> <<set $player.ep = $player.maxep>> <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-2">> <<dialog "Shizu">>$player.name... <</dialog>> <<dialog "You">>Sigh. Shizu-chan, you don't have to worry about me. I'm strong, you know? <</dialog>> <<dialog "Shizu">>I know. You're already Rank 2. I can't believe you beat Kuroki... <</dialog>> <<dialog "You">>Wow... You're really tapped into what's happening, huh? It's pretty easy, actually. It was even getting boring at one point... I hope Kyogaku gives me workout at least... <</dialog>> <div class="button-row"> <<regButton "shizu-intro5-2" "Continue">> </div> </div> <<backend>>[[shizu-intro5-2]] <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-3">> <<dialog "Shizu">>Wait! If you're getting bored of it, why are you still climbing? <</dialog>> <<dialog "You">>Well. It's because I promised. Yamane Emi is being bullied, you know? Like how you couldn't protect Sai, I can't protect Emi without exerting violence. <</dialog>> <<dialog "Shizu">>But... You're already Rank 2. No one is going to touch her anymore with your protection. <</dialog>> <<dialog "You">>Well, I'm already 2nd and 1st is right there. Isn't the goal to always be number one? <</dialog>> <<dialog "Shizu">>U-uhmm... <</dialog>> <<dialog "You">>Welp. Good talk, Shizu-chan~ <</dialog>> <div class="button-row"> <<regButton "shizu-intro5-3" "Turn to leave">> </div> </div> <<backend>>[[shizu-intro5-3]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-1">> <<dialog "Shizu">>Wait! Hear me out! <</dialog>> <<dialog "You">>Hmm? <</dialog>> <<dialog "Shizu">>What if you hang out with me instead? <</dialog>> <<dialog "You">>You think hanging out with a teacher would be more fun than fighting the strongest? <</dialog>> <<dialog "Shizu">>Well. I am pretty cute. <</dialog>> <<dialog "You">>That you are. <</dialog>> <<dialog "Shizu">>S-so... I bet it would be more interesting to hang out with me than with other boys, no? <</dialog>> <<dialog "You">>Fuck. You make a very compelling argument. <</dialog>> <<dialog "Shizu">>Hey! Don't swear! <</dialog>> <<dialog "You">>Oh, fuck. My bad. <</dialog>> <<dialog "You" "Internally">>Well, she is pretty hot. And she's right, I don't have to climb ranks to protect Emi. I should humor her for a while. <</dialog>> <<dialog "Shizu">>So? What do you say? <</dialog>> <<dialog "You">>Fine, but I'm still going to climb when we're not hanging out. <</dialog>> <div class="button-row"> <<regButton "shizu-intro5-4" "She bargains with you">> </div> </div> <<backend>>[[shizu-intro5-4]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Shizu">>What can I do to convince you to not fight him? <</dialog>> <<dialog "You">>I don't know. What can you offer? Better grades? <</dialog>> <<dialog "Shizu" "Offended">>Hey! Are you insulting me? I'm a good teacher! <</dialog>> <<dialog "You">>Well, you know? I just can't think of anything you can offer. <</dialog>> <<dialog "Shizu">>Isn't hanging out enough? <</dialog>> <<dialog "You">>I don't know. I'll think about it. <</dialog>> <<dialog "Shizu">>You really are a good kid, $player.name. <</dialog>> <<dialog "You">>Pfft. I appreciate the genuine concern, Shizu-chan. Other teachers would have ratted me out to the principal by now. I mean... I don't even have justification for challenging Kyogaku. <</dialog>> <<dialog "Shizu">>What are you talking about? You have a really good motivation. Protecting your girlfriend. <</dialog>> <<dialog "You">>She's not my girlfriend. <</dialog>> <div class="button-row"> <<regButton "shizu-intro5-5" "She is shocked">> </div> </div> <<backend>>[[shizu-intro5-5]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Shizu">>S-so like... you're courting her? <</dialog>> <<dialog "You">>Not really. <</dialog>> <<dialog "Shizu" "Shocked">>Then why are you risking life and limb for her!? <</dialog>> <<dialog "You">>Well... Who's going to protect her otherwise? <</dialog>> <<dialog "Shizu" "In Awe">>...Wow. <</dialog>> <<dialog "You">>What? <</dialog>> <<dialog "Shizu">>That's... very noble. <</dialog>> <<dialog "You">>I know~ <</dialog>> <div class="button-row"> <<regButton "end-convo-shizu" "You talk a bit more">> </div> </div> <<backend>>[[shizu-intro6-1]][[end-convo-shizu]] <<set $shizu.day = $dayIndex + 1>> <<set $shizu.social = 5>> <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-2">> <<dialog "Shizu">>Hi~ <</dialog>> <<dialog "You">>Hey~ <</dialog>> <<dialog "Shizu">>You're hanging out with me again? <</dialog>> <<dialog "You">>Would you rather I go fight Sai Kyogaku? <</dialog>> <<dialog "Shizu">>Hehe~ No way~ <</dialog>> <div class="button-row"> <<regButton "shizu-intro6-2" "Continue">> </div> </div> <<backend>>[[shizu-intro6-2]] <<set $hidenav = 1>> <</backend>>
<<backend>> <<time 0 45>> <<goto "classroom">> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-1">> <<dialog "You">>You really are cute, Shizu-chan. Are you dating anyone? <</dialog>> <<dialog "Shizu">>I'm too busy holding you back from fighting Sai-chan so how can I date anyone? <</dialog>> <<dialog "You">>That's great~ <</dialog>> <<dialog "Shizu">>Hey~ No flirting! <</dialog>> <div class="button-row"> <<regButton "shizu-intro6-3" "Tease her">> </div> </div> <<backend>>[[shizu-intro6-3]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>Why not? Are you afraid the flirting might work? <</dialog>> <<dialog "Shizu" "Sarcastic">>Yes. I'm sooo worried that I might fall helplessly in love with my student. <</dialog>> <<dialog "You">>That sounds like a great conclusion to this whole saga though~ <</dialog>> <<dialog "Shizu">>Pfft~ You're an idiot. <</dialog>> <<dialog "Shizu" "Internally">>Noguchi Shizu! What are you doing? Are you actually entertaining this? Pull yourself together! <</dialog>> <div class="button-row"> <<regButton "shizu-intro6-4" "She changes her attitude">> </div> </div> <<backend>>[[shizu-intro6-4]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Shizu" "Flustered">>Ahem.. A-anyways. How's um... school. <</dialog>> <<dialog "You" "Laughing">>Did you actually get flustered? This is great! <</dialog>> <<dialog "Shizu" "Flustered">>Shut up! Just answer my question! <</dialog>> <<dialog "You" "Laughing">>You're the homeroom teacher! You probably know better than I do! <</dialog>> <<dialog "Shizu" "Flustered">>I-I'm talking about the other stuff! Like friends! Do you have friends? You're new so socializing is important! <</dialog>> <<dialog "You">>I don't think I should talk about that~ <</dialog>> <<dialog "Shizu" "Confused">>Wh-why not? <</dialog>> <<dialog "You">>You might get jealous~ <</dialog>> <div class="button-row"> <<regButton "shizu-intro6-5" "She scolds you">> </div> </div> <<backend>>[[shizu-intro6-5]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "Shizu" "Flustered">>You can't talk to your teacher like that! <</dialog>> <<dialog "You">>Hey! Hey! Our student-teacher relationship is suspended while we're hanging out! <</dialog>> <<dialog "Shizu" "Flustered">>How is it suspended!? <</dialog>> <<dialog "You">>It just is~ <</dialog>> <<dialog "Shizu" "Flustered">>You're unbelievable! <</dialog>> <<dialog "You">>I know. I can't believe myself sometimes too~ <</dialog>> <<dialog "Shizu" "Giggling">>You reaally have a way with words, huh? I see you're well-practiced. Hmph~ <</dialog>> <<dialog "You">>Haha! See? You're playing along. Or maybe you really ARE jealous~ <</dialog>> <<dialog "Shizu" "Giggling">>I'm allowed. Our student-teacher relationship is suspended right now. <</dialog>> <<dialog "You">>No takebacks!!! <</dialog>> <div class="button-row"> <<regButton "end-convo-shizu" "You flirt a bit more">> </div> </div> <<backend>>[[shizu1-1]][[end-convo-shizu]] <<set $shizu.day = $dayIndex + 1>> <<set $shizu.social = 6>> <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-3">> <<dialog "Shizu">>Hi~ <</dialog>> <<dialog "You">>Hey~ <</dialog>> <<dialog "Shizu">>Be honest. You're enjoying this, aren't you? <</dialog>> <<dialog "You">>You got me. <</dialog>> <<dialog "Shizu">>Better than punching someone, right? <</dialog>> <<dialog "You">>Nothing is better than this. <</dialog>> <<dialog "Shizu" "Shy">>There you go again... <</dialog>> <div class="button-row"> <<regButton "shizu1-2" "Continue">> </div> </div> <<backend>>[[shizu1-2]] <<set $hidenav = 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-2">> <<dialog "You">>You're enjoying this too, right? <</dialog>> <<dialog "Shizu">>I don't know~ <</dialog>> <<dialog "You">>Hey. I was honest with you. You're setting a bad example, you know? <</dialog>> <<dialog "Shizu">>Fine! Fine! I am. God, you're insufferable. You can't just enjoy your win, huh? You have to rub it in. <</dialog>> <<dialog "You">>It's not about winning. I just want to hear you say you're enjoying this as much as I am. <</dialog>> <<dialog "Shizu" "Her heart is racing">>Maybe... a little... too much. <</dialog>> <div class="button-row"> <<regButton "shizu1-3" "Continue">> </div> </div> <<backend>>[[shizu1-3]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-1">> <<dialog "You">>Only a little? <</dialog>> <<dialog "Shizu" "Nervous">>Th-this is getting too real... Maybe we should-- <</dialog>> <<dialog "You" "Interrupting her">>What's wrong with getting real? Didn't I tell you to be honest? <</dialog>> <<dialog "Shizu" "Heart beating faster">>This is getting inappropriate, $player.name. <</dialog>> <<dialog "You">>What's inappropriate about this? <</dialog>> <<dialog "Shizu" "On the verge of breaking">>I'm your teacher... <</dialog>> <<dialog "You">>Did you forget? Our student-teacher relationship is suspended right now. <</dialog>> <<dialog "Shizu" "Losing her mind">>I... <</dialog>> <div class="button-row"> <<regButton "shizu1-kiss1" "Kiss her">> </div> </div> <<backend>>[[shizu1-kiss1]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-kiss1">> <<dialog "Shizu" "Mind completely gone">>$player.name~ <</dialog>> <<dialog "You">>Shizu-chan~ <</dialog>> <div class="button-row"> <<regButton "shizu1-flirt" "Pull away">> </div> </div> <<backend>>[[shizu1-flirt]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-flirt">> <<dialog "Shizu">>This is so wrong~ <</dialog>> <<dialog "You">>It doesn't feel wrong though~ <</dialog>> <<dialog "Shizu">>I know~ And I hate it~ <</dialog>> <<dialog "You">>Well, if you're going to do something wrong anyways... Might as well go big, right? <</dialog>> <<dialog "Shizu">>Fine~ <</dialog>> <div class="button-row"> <<regButton "shizu1-grope" "She guides your hand to her boobs">> </div> </div> <<backend>>[[shizu1-grope]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-grope">> <<dialog "Shizu">>You've been staring at these for days. <</dialog>> <<dialog "You">>Fuck~ And now, I get to touch them~ <</dialog>> <<dialog "Shizu">>I can't believe I'm doing this. <</dialog>> <<dialog "You">>I know. Isn't it exciting? <</dialog>> <<dialog "Shizu">>Maybe~ <</dialog>> <div class="button-row"> <<regButton "shizu1-kiss2" "Kiss her">> </div> </div> <<backend>>[[shizu1-kiss2]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-kiss2">> <<dialog "You">>Your lips are so sweet~ <</dialog>> <<dialog "Shizu">>Mmm~ <</dialog>> <div class="button-row"> <<regButton "shizu1-undress" "Undress her">> </div> </div> <<backend>>[[shizu1-undress]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>Take your blouse off. <</dialog>> <<dialog "Shizu">>O-okay... <</dialog>> <<vid "shizu/shizu1/shizu1-flash">> <<dialog "You">>You're huge~ <</dialog>> <<dialog "Shizu">>I-it's embarrassing... <</dialog>> <div class="button-row"> <<regButton "shizu1-tits" "Fondle her boobs">> </div> </div> <<backend>>[[shizu1-tits]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-tits" 1 3>> <<dialog "You">>So soft~ <</dialog>> <<dialog "Shizu">>N-not too rough~ <</dialog>> <div class="button-row"> <<regButton "shizu1-face" "Bury your face in her boob">> </div> </div> <<backend>>[[shizu1-face]] <<set $hidenav = 1>> <<time 0 3>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-face1">> <<dialog "You">>Mmmphh~ <</dialog>> <<dialog "Shizu">>C-can you even breathe? <</dialog>> <<dialog "You">>Your boobs are so big, they have their own atmosphere. <</dialog>> <<dialog "Shizu" "Chuckling">>Pfft~ You really are an idiot. <</dialog>> <div class="button-row"> <<regButton "shizu1-hj" "Handjob">> </div> </div> <<backend>>[[shizu1-hj]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-hj" 1 3>> <<dialog "You">>Ahh~ Your hands are so soft too~ <</dialog>> <<dialog "Shizu">>Y-you're so hard... <</dialog>> <div class="button-row"> <<regButton "shizu1-lick" "Make her lick it">> </div> </div> <<backend>>[[shizu1-lick]] <<set $hidenav = 1>> <<time 0 3>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-lick" 1 2>> <<dialog "You">>Ahh~ That feels great, Shizu-chan~ <</dialog>> <<dialog "Shizu">>Slurp~ <</dialog>> <div class="button-row"> <<regButton "shizu1-bj" "Blowjob">> </div> </div> <<backend>>[[shizu1-bj]] <<set $hidenav = 1>> <<time 0 2>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-bj" 1 2>> <<dialog "You">>Ahh~ That's it~ Your mouth is so warm. <</dialog>> <<dialog "Shizu">>Doesh ith feew gooth? <</dialog>> <<dialog "You">>Of course it does~ <</dialog>> <div class="button-row"> <<regButton "shizu1-deep" "Intensify">> </div> </div> <<backend>>[[shizu1-deep]] <<set $hidenav = 1>> <<time 0 2>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-deep" 1 2>> <<dialog "You">>Keep going, Shizu~ <</dialog>> <<dialog "Shizu">><i><b>gkkk gwkkk gkkk hgkk</b></i> <</dialog>> <<dialog "You">>Fuck! <</dialog>> <<dialog "Shizu">>Hangkuage~ <</dialog>> <div class="button-row"> <<regButton "shizu1-tj" "Titjob">> </div> </div> <<backend>>[[shizu1-tj]] <<set $hidenav = 1>> <<time 0 2>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-tj" 1 2>> <<dialog "You">>Your boobs are perfectly sandwiching my dick. <</dialog>> <<dialog "Shizu">>Mmm~ I've always known I have amazing boobs~ <</dialog>> <<dialog "You">>This is great, but it's my turn to make you feel good. <</dialog>> <div class="button-row"> <<regButton "shizu1-pussy" "Spread her legs">> </div> </div> <<backend>>[[shizu1-pussy]] <<set $hidenav = 1>> <<time 0 2>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>Sit on top of the desk and spread your legs. <</dialog>> <<dialog "Shizu">>N-nooo! It's embarrassing~ <</dialog>> <<dialog "You">>Just do it, Shizu-chan~ <</dialog>> <hr> You lift her to the desk and spread her legs. <hr> <<vid "shizu/shizu1/shizu1-pussy">> <div class="button-row"> <<regButton "shizu1-cun" "Lick her pussy">> </div> </div> <<backend>>[[shizu1-cun]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-cun" 1 3>> <<dialog "You">>Slurp~ Your pussy Slurp~ is sweet~ Slurp~ <</dialog>> <<dialog "Shizu">>Ahhhh~ It feels gooood~ <</dialog>> <div class="button-row"> <<regButton "shizu1-mis" "Fuck her">> </div> </div> <<backend>>[[shizu1-mis]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-mis" 1 3>> <<dialog "Shizu">>Mmmm~ I can't believe you're fucking me~ This is so wrong~ <</dialog>> <<dialog "You">>But does it feel good? <</dialog>> <<dialog "Shizu">>Ahh~ It feels goood~ <</dialog>> <div class="button-row"> <<regButton "shizu1-cow1" "Cowgirl">> <<regButton "shizu1-dog" "Doggy">> </div> </div> <<backend>>[[shizu1-cow1]] <<set $hidenav = 1>> <<time 0 3>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-cow-a" 1 3>> <<dialog "You">>That's it. Up and down~ <</dialog>> <<dialog "Shizu">>Ahh~ I'll show you~ That this is~ Way better than~ Fightiiiiiing~ <</dialog>> <div class="button-row"> <<regButton "shizu1-cow2" "Harder">> </div> </div> <<backend>>[[shizu1-cow2]] <<set $hidenav = 1>> <<time 0 3>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-cow-b" 1 3>> <<dialog "You">>That's it, keep bouncing~ <</dialog>> <<dialog "Shizu">>Ahhhh~ I can't~ Stop~ <</dialog>> <div class="button-row"> <<regButton "shizu1-mis" "Missionary">> <<regButton "shizu1-dog" "Doggy">> </div> </div> <<backend>>[[shizu1-dog]] <<set $hidenav = 1>> <<time 0 3>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-dog" 1 3>> <<dialog "Shizu">>Ahhhh~ It's so much deeper~ <</dialog>> <<dialog "You">>Your pussy is so tight! <</dialog>> <div class="button-row"> <<regButton "shizu1-mis" "Missionary">> <<regButton "shizu1-cow1" "Cowgirl">> <<regButton "shizu1-cum" "Cum">> </div> </div> <<backend>>[[shizu1-cum]] <<set $hidenav = 1>> <<time 0 3>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<dialog "You">>I'm about to cum~ <</dialog>> <<dialog "Shizu">>Y-you can cum inside... I'm on birth control... <</dialog>> <<dialog "You">>You're amazing~ <</dialog>> <<vid "shizu/shizu1/shizu1-cum">> <div class="button-row"> <<regButton "shizu1-creampie" "Her pussy is filled">> </div> </div> <<backend>>[[shizu1-creampie]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-creampie">> <<dialog "You">>Your pussy is awesome~ <</dialog>> <<dialog "Shizu">>Ahh~ You really filled me up~ <</dialog>> <div class="button-row"> <<regButton "shizu1-end" "End">> </div> </div> <<backend>>[[shizu1-end]] <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> <<vid "shizu/shizu1/shizu1-end">> <<dialog "Shizu">>I can't believe I just did that... <</dialog>> <<dialog "You">>That was great~ <</dialog>> <<dialog "Shizu">>Listen. Nobody can know about this, alright? <</dialog>> <<dialog "You">>Of course! <</dialog>> <<dialog "Shizu">>Not bored anymore huh? <</dialog>> <<dialog "You">>My favorite kind of exercise. <</dialog>> <<dialog "Shizu">>Crap. I hear the janitor coming. Let's leave! You go ahead first so it's not suspicious. I'll see you in class, okay? <</dialog>> <<dialog "You">>Take care, okay? <</dialog>> <div class="button-row"> <<if $gallery>> <<regButton "gallery-crud" "Back to Gallery">> <<else>> <<regButton "school" "End">> <</if>> </div> </div> <<backend>>[[shizu1-end]] <<set $shizu.quest = 1>> <<set $hidenav = 1>> <<time 0 1>> <</backend>>
<<nobr>> <<if $yuki.quest == 0 && $dayIndex >= $yuki.day>> <<if $location == "konbini" && $hour >= 11 && $hour < 20 && !$yuki.met>><<set $afford = $player.money >= 5>> <<regButton "yuki-intro1" "Flirt with the Cashier 💵$5" $afford>> <</if>> <<if $location == "konbini" && $hour >= 11 && $hour < 20 && $yuki.social == 1 && $dayIndex >= $yuki.day>><<set $afford = $player.money >= 5>> <<regButton "yuki-intro2" "Flirt with the Cashier 💵$5" $afford>> <</if>> <<if $location == "konbini" && $hour >= 11 && $hour < 20 && $yuki.social == 2 && $dayIndex >= $yuki.day>><<set $afford = $player.money >= 5>> <<regButton "yuki-intro3" "Flirt with the Cashier 💵$5" $afford>> <</if>> <<if $location == "konbini" && $hour >= 11 && $hour < 20 && $yuki.social == 3 && $dayIndex >= $yuki.day>><<set $afford = $player.money >= 5>> <<regButton "yuki-intro4" "Flirt with the Cashier 💵$5" $afford>> <</if>> <</if>> <<if $location == "park" && $hour == 22 && $yuki.quest == 1>> <<regButton "yuki2-1" "Yuki is getting harassed!">> <</if>> <<if $yuki.quest == 2>> <<if $location == "konbini" && $hour >= 20 && $yuki.social == 4 && $dayIndex >= $yuki.day>><<set $afford = $player.money >= 100>> <<regButton "yuki-intro5" "Yuki Escort Service 💵$100" $afford>> <</if>> <<if $location == "konbini" && $hour >= 20 && $yuki.social == 5 && $dayIndex >= $yuki.day>><<set $afford = $player.money >= 100>> <<regButton "yuki-intro6" "Yuki Escort Service 💵$100" $afford>> <</if>> <<if $location == "konbini" && $hour >= 20 && $yuki.social == 6 && $dayIndex >= $yuki.day>><<set $afford = $player.money >= 125>> <<regButton "yuki-intro7-1" "Yuki Escort Service 💵$125" $afford>> <</if>> <<if $location == "konbini" && $hour >= 20 && $yuki.social == 7 && $dayIndex >= $yuki.day>><<set $afford = $player.money >= 225>> <<regButton "yuki-intro8-1" "Yuki Escort Service 💵$225" $afford>> <</if>> <<if $location == "konbini" && $hour >= 20 && $yuki.social == 8 && $dayIndex >= $yuki.day>><<set $afford = $player.money >= 500>> <<regButton "yuki3-1" "Have Sex with Yuki 💵$500" $afford>> <</if>> <</if>> <</nobr>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki-konbini">> <<dialog "You">>Hi, um... Yuki. You're looking cute again today. <</dialog>> <<dialog "Yuki" "Internally">>God, I hate these nametags. <</dialog>> <<dialog "Yuki">>That'll be $5, sir. <</dialog>> <<dialog "You">>You don't have to call me sir. I'm $player.name! <</dialog>> <<dialog "Yuki">>I'm working... sir... <</dialog>> <<dialog "You">>How cold~ <</dialog>> You pay $5. <div class="button-row"> <<regButton "konbini" "Continue">> </div> </div> <<backend>>[[yuki-intro2]] <<set $yuki.met = true>> <<set $player.money -= 5>> <<time 0 1>> <<set $yuki.day = $dayIndex + 1>> <<set $yuki.social = 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki-konbini">> <<dialog "You">>Hi again, Yuki. I want something but I couldn't find it in any shelf. Can you help me? <</dialog>> <<dialog "Yuki">>What are you looking for, sir? <</dialog>> <<dialog "You">>Your number. <</dialog>> <<dialog "Yuki">>Pft. Sadly, we're out of stock. <</dialog>> <<dialog "You">><b>Sadly</b>, huh? <</dialog>> <<dialog "Yuki">>Next customer, please! <</dialog>> You pay $5 for some snacks. <div class="button-row"> <<regButton "konbini" "Continue">> </div> </div> <<backend>>[[yuki-intro3]] <<set $player.money -= 5>> <<time 0 1>> <<set $yuki.day = $dayIndex + 1>> <<set $yuki.social = 2>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki-konbini">> <<dialog "You">>You know... You're the only reason why I visit this store. <</dialog>> <<dialog "Yuki">>And yet I am severely underpaid. <</dialog>> <<dialog "You">>That sucks. <</dialog>> You pay $5 for some snacks. <div class="button-row"> <<regButton "konbini" "Continue">> </div> </div> <<backend>>[[yuki-intro4]] <<set $player.money -= 5>> <<time 0 1>> <<set $yuki.day = $dayIndex + 1>> <<set $yuki.social = 3>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki-konbini">> <<dialog "You">>I bet you're as sweet as this Slurpee. <</dialog>> <<dialog "Yuki">>Next customer, please! <</dialog>> <<dialog "You">>As cold as it too~ <</dialog>> <<dialog "Yuki" "Blushing">>... <</dialog>> You pay $5 for the Slurpee and some snacks. <div class="button-row"> <<regButton "konbini" "Continue">> </div> </div> <<backend>>[[yuki1-1]] <<set $player.money -= 5>> <<time 0 1>> <<set $yuki.day = $dayIndex + 1>> <<set $yuki.social = 4>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini" $hour>> <div class="content-panel"> <<dialog "You">>Hi, Yuki. You're just clocking out? <</dialog>> <<dialog "Yuki">>Oh... $player.name... <</dialog>> <<dialog "You">>Ooh. You know my name? <</dialog>> <<dialog "Yuki">>Well... You did tell me your name. <</dialog>> <div class="button-row id-row"> <<regButton "yuki1-2" "Ask her out">> </div> </div> <<backend>>[[yuki1-2]] <<set $hidenav = 1>> <</backend>>
<<bg "konbini" $hour>> <div class="content-panel"> <<dialog "You">>Admit it! You're a liiiittle interested in me. <</dialog>> <<dialog "Yuki">>Pft. Yeah, right. <</dialog>> <<dialog "You">>So, why don't we get some coffee? Or tea? You know... Since its late. You get to know more about me, other than my name, and I get to stare at that beautiful face of yours the entire time. <</dialog>> <<dialog "Yuki">>Look, $player.name. I'm flattered. I think you're cute too. It's just that I'm more focused on making money right now... I don't really have time for... dating. <</dialog>> <<dialog "You">>Damn. Okay. <</dialog>> <<dialog "Yuki">>I'm really sorry. <</dialog>> <<dialog "You">>No, don't be. Can I at least walk you home? It's pretty dark. <</dialog>> <<dialog "Yuki">>Actually, I have plans after this. Thanks anyway, you're sweet. <</dialog>> <<dialog "You" "Internally">>Is she trying to avoid me? <</dialog>> <<dialog "You">>O-okay. Take care. I'll see you around. <</dialog>> <<dialog "Yuki">>I'll see you around. <</dialog>> <div class="button-row id-row"> <<regButton "konbini" "Oof">> </div> </div> <<backend>>[[yuki2-1]] <<set $yuki.quest = 1>> <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "park" $hour>> <div class="content-panel"> <<dialog "You">>You fuckers! <</dialog>> <hr> You kick one of the thugs in the head, immediately knocking him out. <hr> <<dialog "Thug 1" "Passing out" "enemies" "ranker2">>Uggkkk!! <</dialog>> <<dialog "Thug 2" "Shocked" "enemies" "ranker5">>Wh-what!? <</dialog>> <<dialog "Yuki" "Shocked">>H-huh!? $player.name!? <</dialog>> <<dialog "You">>Stay back, Yuki! <</dialog>> <<dialog "Thug 2" "Shocked" "enemies" "ranker5">>You son of a bitch! <</dialog>> <<dialog "Yuki">>No! Wait! $player.name! <</dialog>> <<dialog "You">>Get behind me, Yuki! <</dialog>> <div class="button-row id-row"> <<regButton "yuki2-battlecrud" "Fight">> </div> </div> <<backend>>[[yuki2-battlecrud]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<set $enemy = { name: "", type: "", level: 1, hp: 100, ep: 100, maxhp: 100, maxep: 100, str: 0, agi: 0, int: 0}>> <<set $commentary = "">> <<set $enemy.name = "Thug 2">> <<set $enemy.level = 5>> <<set $epoints = $enemy.level * 5>> <<set _base = Math.floor($epoints / 4)>> <<set _remaining = $epoints - (_base * 3)>> <<set $enemy.str = _base>> <<set $enemy.agi = _base>> <<set $enemy.int = _base>> <<for _i = 0; _i < _remaining; _i++>> <<set _r = random(1,3)>> <<switch _r>> <<case 1>><<set $enemy.str += 1>><</case>> <<case 2>><<set $enemy.agi += 1>><</case>> <<case 3>><<set $enemy.int += 1>><</case>> <</switch>> <</for>> <<set $enemy.maxhp = 90 + (10 * $enemy.level) + (2*$enemy.str)>> <<if $enemy.str >= $enemy.agi && $enemy.str >= $enemy.int>> <<set $enemy.type = "Tank">> <<elseif $enemy.agi >= $enemy.str && $enemy.agi >= $enemy.int>> <<set $enemy.type = "Striker">> <<else>> <<set $enemy.type = "Grappler">> <</if>> [[yuki2-battle]][[yuki2-win]][[yuki2-lose]] <<set $enemy.hp = $enemy.maxhp>> <<set $pdialog = "Get behind me, Yuki!">> <<set $edialog = "Who are you!?">> <<set $battlePassage = "yuki2">> <<goto "yuki2-battle">>
<<set $useableMoves = 0>><<bg "park" $hour>> <div class="content-panel"> <<print $commentary + "<br>">> <<combat $enemy.name $enemy.level $enemy.type "enemies-reg" $enemy.hp $enemy.ep $enemy.maxhp $enemy.maxep "ranker5">>$edialog<</combat>> <<combat "You" $player.level "Specialist" "avatars" $player.hp $player.ep $player.maxhp $player.maxep>>$pdialog<</combat>> <<dialog "Yuki">>Wait! Stop! <</dialog>> <div class="button-row"> <<include "battle-options">> </div> </div> <<backend>>[[battle-options]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<backend>> <<set $strMetric += 1>> <<set $agiMetric += 1>> <<set $intMetric += 1>> <<set $rewmoney = 5 + ($enemy.level * random(2,5))>> <<set $rewxp = 18 + Math.round($enemy.level * $enemy.level * 0.5) + ($enemy.level * random(10,30)) + (Math.round($player.int * random(35,75) * 0.01))>> <<set $player.money = $player.money + $rewmoney>> <</backend>><<bg "park" $hour>> <div class="content-panel"> <<print $commentary>> Thug gets knocked out. <<dialog "Thug 2" "Passing out" "enemies" "ranker5">>What did we... do... to... you... <</dialog>> You get $<<print $rewmoney>> and <<print $rewxp>> exp. <div><<exp $rewxp>></div> <<dialog "You">>You're safe now, Yuki. <</dialog>> <<dialog "Yuki" "Angry">>You asshole! I told you to stop! <</dialog>> <<dialog "You">>W-what!? <</dialog>> <div class="button-row"> <<regButton "yuki2-2" "Continue">> </div> </div> <<backend>>[[yuki2-2]] <<time 0 1>> <<set $hidenav = 0>> <<set $wins += 1>> <</backend>>
<<bg "classroom">> <div class="content-panel"> Welp... You lost. I'll restore your health and energy for free! I'll send you back to before you tried to rescue Yuki. Try beating up some punks in the park to level up and strengthen up a bit before you retry the quest. Here's a dancing naked girl to cheer you up. <<vid "misc/lets99">> Her name's Lets99. Also a Korean Broadcast Jockey (KBJ). <div class="button-row"> <<regButton "park" "End">> </div> </div> <<backend>> <<time 0 1>> <<set $player.hp = $player.maxhp>> <<set $player.ep = $player.maxep>> <<set $hidenav = 1>> <</backend>>
<<bg "park" $hour>> <div class="content-panel"> <<dialog "You">>They were harassing you. <</dialog>> <<dialog "Yuki" "Angry">>Haahhh. How nosy. They were clients! <</dialog>> <<dialog "You" "Confused">>Clients? <</dialog>> <<dialog "Yuki" "Angry">>Yeah. They pay me to hang out with them and let them... touch me. They were refusing to pay because I drank their alcohol. They told me the bill should have been paid with that. That's why we were having an argument just now! <</dialog>> <<dialog "You">>Wait... So you have... sex for money? <</dialog>> <<dialog "Yuki" "Offended">>How dare you! First you ruin my business, then you insult me?? I'm not spreading my legs for just anybody! <</dialog>> <<dialog "You">>That's a relief... <</dialog>> <<dialog "Yuki" "Angry">>Relief!? You just ruined my fucking business! <</dialog>> <div class="button-row id-row"> <<regButton "yuki2-3" "She storms off">> </div> </div> <<backend>>[[yuki2-3]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "park" $hour>> <div class="content-panel"> <<dialog "You">>We-we-we-we-wait. Let me make it up to you. <</dialog>> <<dialog "Yuki" "Annoyed">>What? Are you going to un-punch my clients?? <</dialog>> <div class="button-row id-row"> <<regButton "yuki2-4" "Denial">> </div> </div> <<backend>>[[yuki2-4]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "park" $hour>> <div class="content-panel"> <<dialog "You">>Well... <</dialog>> <<dialog "Yuki" "Desperate">>Maybe they're okay? <</dialog>> <<dialog "You">>N-nah... I'm pretty strong. <</dialog>> <div class="button-row id-row"> <<regButton "yuki2-5" "Anger">> </div> </div> <<backend>>[[yuki2-5]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "park" $hour>> <div class="content-panel"> <<dialog "Yuki" "Angry">>This is all your fucking fault! <</dialog>> <<dialog "You">>Come on... I said I was sorry. <</dialog>> <<dialog "Yuki" "Angry">>What will your sorry do? You knocked the fuck out of my clients! <</dialog>> <div class="button-row id-row"> <<regButton "yuki2-6" "Bargaining">> </div> </div> <<backend>>[[yuki2-6]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "park" $hour>> <div class="content-panel"> <<dialog "You">>I can replace them! <</dialog>> <<dialog "Yuki" "Disgusted">>You. Fucking. Pervert. <</dialog>> <<dialog "You">>No? How about I introduce you to some rich people. They'd pay a lot! <</dialog>> <<dialog "Yuki" "Disgusted">>You think I'm going to let just some random geezer touch me!? <</dialog>> <<dialog "You">>You were letting those guys touch you! <</dialog>> <<dialog "Yuki" "Angry">>Yeah, but I knew those guys! <</dialog>> <div class="button-row id-row"> <<regButton "yuki2-7" "Depression">> </div> </div> <<backend>>[[yuki2-7]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "park" $hour>> <div class="content-panel"> <<dialog "Yuki" "Crying">>How am I gonna pay my debt now? Huhuhu. <</dialog>> <<dialog "You">>U-umm... <</dialog>> <div class="button-row id-row"> <<regButton "yuki2-8" "Acceptance">> </div> </div> <<backend>>[[yuki2-8]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "park" $hour>> <div class="content-panel"> <<dialog "You">>What can I do, then? Let me help. It was an honest mistake. You looked like you were about to be raped in my perspective. <</dialog>> <<dialog "Yuki" "Annoyed">>Hahhh, fucking hell. That's the only reason why I haven't kicked you in the nuts yet. <</dialog>> <<dialog "You">>Tell me what I can do. Go on. <</dialog>> <<dialog "Yuki">>Fine. Every end of my shift, come visit me. Bring cash. <</dialog>> <<dialog "You">>I'm going to be your new client, then? <</dialog>> <<dialog "Yuki">>You offered, didn't you? <</dialog>> <<dialog "You">>Yes, ma'am! <</dialog>> <<dialog "Yuki">>Walk me home. <</dialog>> <<dialog "You">>Yes, ma'am. <</dialog>> <div class="button-row id-row"> <<regButton "yuki2-9" "Continue">> </div> </div> <<backend>>[[yuki2-9]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "residential" $hour>> <div class="content-panel"> You walk her home <hr> <<dialog "You">>Take care! <</dialog>> <<dialog "Yuki">>Tomorrow, okay? <</dialog>> <<dialog "You">>Yes, ma'am! <</dialog>> <div class="button-row id-row"> <<regButton "residential" "End">> </div> </div> <<backend>>[[yuki-intro5]] <<set $yuki.quest = 2>> <<set $yuki.day = $dayIndex + 1>> <<time 0 15>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<dialog "You" "Awkward">>So... How do we do this? <</dialog>> <<dialog "Yuki">>You've never done this before? That's cute. <</dialog>> <<dialog "You">>Are you making fun of me? <</dialog>> <<dialog "Yuki" "Chuckling">>Considering how flirty you are, I assumed you were experienced. <</dialog>> <<dialog "You">>So how do we do this? <</dialog>> <<dialog "Yuki">>Have you ever had a girlfriend before? <</dialog>> <<dialog "You">>Of course. <</dialog>> <<dialog "Yuki">>Just treat me like I'm your girlfriend. Start off with wrapping your arms around me. <</dialog>> <<dialog "You">>This is nice. <</dialog>> <<dialog "Yuki">>It kind of is. Who knew a change of environment would make this kind of work actually not gross? <</dialog>> <<dialog "You">>I do have that effect~ <</dialog>> <<dialog "Yuki">>Idiot. I meant literally the environment. The quiet convenience store is more chill than a bar. <</dialog>> <<dialog "You">>So by letting them touch you, you meant this? <</dialog>> <<dialog "Yuki">>Yes. What did you think I meant, pervert? <</dialog>> <<dialog "You" "Grabbing her hand">>I meant hand holding, of course. What did you think I thought you meant? <</dialog>> <<dialog "Yuki">>Pfft. Shut up. <</dialog>> She leans on your shoulder. You stay like this for another hour. <div class="button-row"> <<regButton "yuki-pay" "Continue">> </div> </div> <<backend>>[[yuki-intro6]] <<set $player.money -= 100>> <<time 0 1>> <<set $yuki.day = $dayIndex + 1>> <<set $yuki.social = 5>> <<set $hidenav = 1>> <</backend>>
<<bg "residential" $hour>> <div class="content-panel"> <<dialog "You">>That was nice. <</dialog>> <<dialog "Yuki">>It really was. Thanks for making it not insufferable... and for walking me home. <</dialog>> <<dialog "You">>I'll see you tomorrow, yeah? <</dialog>> <<dialog "Yuki">>Definitely. <</dialog>> <div class="button-row id-row"> <<regButton "residential" "End">> </div> </div> <<backend>>[[yuki1-2]] <<time 1 15>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<dialog "You" "Grabbing her waist">>Is this okay? <</dialog>> <<dialog "Yuki">>This is getting bold, but it's kinda nice. <</dialog>> <<dialog "You">>This would be normal if you were my girlfriend~ <</dialog>> <<dialog "Yuki" "Chuckling">>Oh~ We're pushing it, are we? <</dialog>> <<dialog "You">>Those were your rules~ <</dialog>> <<dialog "Yuki">>Those were indeed my rules. You're right. <</dialog>> <<dialog "You">>We look like we've been a couple for years now. <</dialog>> <<dialog "Yuki">>We really just skipped a few steps, huh? <</dialog>> <<dialog "You">>I'm glad I beat the shit out of those guys. My hand wouldn't be on your waist right now otherwise. <</dialog>> <<dialog "Yuki">>It was satisfying, wasn't it? I'd think you were pretty cool if I wasn't so mad back then. <</dialog>> <<dialog "You">>How about now? You think I'm cool now? <</dialog>> <<dialog "Yuki" "Leaning on your thigh">>Maybe~ <</dialog>> <<dialog "You" "Moving your face close to hers">>You know, boyfriends do more than holding their girlfriends' waists, right? <</dialog>> <<dialog "Yuki">>What do you have in mind? <</dialog>> <<dialog "You" "Approaching her neck">>I don't know, maybe I'll push your limits to see what I can get away with~ <</dialog>> <<dialog "Yuki">>Naughty boy~ <</dialog>> You make out for an hour. <div class="button-row"> <<regButton "yuki-pay" "Continue">> </div> </div> <<backend>>[[yuki-intro7-1]] <<set $player.money -= 100>> <<time 0 1>> <<set $yuki.day = $dayIndex + 1>> <<set $yuki.social = 6>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<dialog "Yuki" "Grabbing you">>Come here. <</dialog>> <<dialog "You">>Huh? <</dialog>> <<dialog "Yuki" "Handing you a uniform">>Wear this so you can get in the back. <</dialog>> <<dialog "You">>O-okay? <</dialog>> <<dialog "Yuki">>The unifrom looks good on you~ <</dialog>> <<dialog "You">>Thanks, but what are we going to do here? <</dialog>> <<dialog "Yuki">>I'm going to blow your mind. <</dialog>> <div class="button-row"> <<regButton "yuki-intro7-2" "She shows you her cleavage">> </div> </div> <<backend>>[[yuki-intro7-2]] <<set $player.money -= 125>> <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki3/yuki3-1">> <<dialog "Yuki">>Actually... I have somewhere to be today so... <</dialog>> <<dialog "You">>Uh huh... <</dialog>> <<dialog "Yuki">>So... Instead of making out for an hour... <</dialog>> <div class="button-row"> <<regButton "yuki-intro7-3" "She shows you her boobs">> </div> </div> <<backend>>[[yuki-intro7-3]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki3/yuki3-2">> <<dialog "Yuki">>I'm giving you something to think about tonight. <</dialog>> <<dialog "You">>Oh my god. <</dialog>> <<dialog "Yuki">>You can even take a picture~ That's how much I like you~ <</dialog>> <div class="button-row"> <<regButton "yuki-intro7-4" "She poses for you">> </div> </div> <<backend>>[[yuki-intro7-4]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki3/yuki3-3">> <<dialog "Yuki">>So, I'm free to go, right? <</dialog>> <<dialog "You">>Uh huh... <</dialog>> <<dialog "Yuki">>Pfft~ To make things exciting for tomorrow, I'm going to give you a sneak peek of what I'll be offering. <</dialog>> <div class="button-row"> <<regButton "yuki-intro7-5" "She unbuttons her pants">> </div> </div> <<backend>>[[yuki-intro7-5]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki3/yuki3-4">> <<dialog "Yuki">>Hey~ Watch those hands~ <</dialog>> <<dialog "You">>Oh. Sorry. <</dialog>> <<dialog "Yuki">>Want a peek? <</dialog>> <<dialog "You">>Oh god, yes. <</dialog>> <div class="button-row"> <<regButton "yuki-intro7-6" "She shows you her pubes">> </div> </div> <<backend>>[[yuki-intro7-6]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki3/yuki3-5">> <<dialog "Yuki">>You really can't resist reaching over, huh? <</dialog>> <<dialog "You">>Sorry. <</dialog>> <<dialog "Yuki">>Pfft~ I'm going to leave, okay? <</dialog>> <<dialog "You">>Uh huh. <</dialog>> <div class="button-row"> <<regButton "yuki-intro7-7" "She changes her clothes in front of you">> </div> </div> <<backend>>[[yuki-intro7-7]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<dialog "You">>This is so hot. You're so pretty. <</dialog>> <<dialog "Yuki">>Hehe~ No need to walk me out. I'll see you tomorrow~ <</dialog>> <<dialog "You">>Okay. Stay safe. <</dialog>> <div class="button-row"> <<if $gallery>> <<regButton "gallery-crud" "Back to Gallery">> <<else>> <<regButton "konbini" "She kisses you and leaves">> <</if>> </div> </div> <<backend>>[[yuki-intro8-1]] <<time 0 1>> <<set $hidenav = 1>> <<set $yuki.day = $dayIndex + 1>> <<set $yuki.social = 7>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<dialog "Yuki">>You know what to do~ Wear the uniform. <</dialog>> <<dialog "You">>Y-yes. <</dialog>> <<dialog "Yuki" "Handing you a uniform">>Pfft~ Are you nervous right now? <</dialog>> <<dialog "You">>I'm excited as fuck. <</dialog>> <<dialog "Yuki">>Hehe~ Well, don't get too excited. You're not allowed to touch. <</dialog>> <<dialog "You">>Wh-what!? <</dialog>> <<dialog "Yuki">>You don't want the show then? Should we go back to just being all lovey-dovey in the corner? <</dialog>> <<dialog "You">>One ticket to the show, please. <</dialog>> <div class="button-row"> <<regButton "yuki-intro8-2" "She takes her bottoms off">> </div> </div> <<backend>>[[yuki-intro8-2]] <<set $player.money -= 225>> <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki3/yuki3-6">> <<dialog "Yuki">>I've only ever done this for you, so you should appreciate it, okay? <</dialog>> <<dialog "You">>Oh, I'm appreciating so hard right now. <</dialog>> <<dialog "Yuki">>Pfft~ Idiot~ <</dialog>> <<dialog "You">>Ehhh? You're so wet right now~ I guess I'm not the only one excited about this~ <</dialog>> <<dialog "Yuki">>Oh, I've been thinking about this the whole day~ <</dialog>> <div class="button-row"> <<regButton "yuki-intro8-3" "She masturbates in front of you">> </div> </div> <<backend>>[[yuki-intro8-3]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki3/yuki3-8">> <<dialog "Yuki">>Ahhh~ This feels... Hngg~ A little awkward~ <</dialog>> <<dialog "You">>I don't know what you're talking about. This is great. <</dialog>> <<dialog "Yuki" "Stops">>This is too awkward. <</dialog>> <<dialog "You">>Hey! No fair! <</dialog>> <<dialog "Yuki">>I'll let you touch me all over for 10 seconds instead. <</dialog>> <<dialog "You">>That's fair. <</dialog>> <<dialog "Yuki">>Pfft~ You change your mind really quick~ <</dialog>> <div class="button-row"> <<regButton "yuki-intro8-4" "She starts counting down">> </div> </div> <<backend>>[[yuki-intro8-4]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki3/yuki3-9">> <<dialog "Yuki" "Giggling">>1... 2... 3... <</dialog>> <<dialog "You">>Ahhhhhhhh!! I gotta touch everything! <</dialog>> <<dialog "Yuki">>4... 5... 6... <</dialog>> <<dialog "You">>The boobs! The pussy! <</dialog>> <<dialog "Yuki">>7... 8... 9... <</dialog>> <<dialog "You">>Ahhhhhhhhhh! <</dialog>> <<dialog "Yuki">>10! Enough~ Enough~ <</dialog>> <<dialog "You">>That was too quick! <</dialog>> <div class="button-row"> <<regButton "yuki-intro8-5" "She laughs">> </div> </div> <<backend>>[[yuki-intro8-5]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<dialog "Yuki">>You wanna touch me some more? <</dialog>> <<dialog "You">>Of course. <</dialog>> <<dialog "Yuki">>Well... Masturbating in front of you is more embarrassing than I thought so... <</dialog>> <<dialog "You">>So? <</dialog>> <<dialog "Yuki">>Fine. You can finger me. <</dialog>> <<dialog "You">>Sweet~ <</dialog>> <div class="button-row"> <<regButton "yuki-intro8-6" "Finger her">> </div> </div> <<backend>>[[yuki-intro8-6]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki3/yuki3-7">> <<dialog "Yuki">>Hnnng~ Ahhh~ That feels good~ <</dialog>> <<dialog "You">>You're so wet, Yuki~ <</dialog>> <<dialog "Yuki">>Ahhh~ You like it? <</dialog>> <<dialog "You">>Yes~ <</dialog>> <<dialog "Yuki">>You wanna... Ahh~ ...fuck me? <</dialog>> <<dialog "You">>Of course. <</dialog>> <<dialog "Yuki">>Hehe~ Maybe next time~ Ahhh~ <</dialog>> <<dialog "You">>Aww~ <</dialog>> <div class="button-row"> <<regButton "yuki-intro8-7" "She cums">> </div> </div> <<backend>>[[yuki-intro8-7]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<dialog "Yuki" "Satisfied">>That was... amazing. <</dialog>> <<dialog "You">>So, is it my turn? <</dialog>> <<dialog "Yuki">>Hmmm~ Not yet. <</dialog>> <<dialog "You">>Are you not ready yet? <</dialog>> <<dialog "Yuki">>Oh, I'm ready. I just think it'd be funny to make you wait one more day. <</dialog>> <<dialog "You" "Upset">>That's so sadistic... <</dialog>> <<dialog "Yuki">>Aww~ Don't leave~ I'll let you fuck me with random stuff in the store~ <</dialog>> <<dialog "You">>What? Why? <</dialog>> <<dialog "Yuki">>You don't want to? <</dialog>> <<dialog "You">>Fuck it. Let's get freaky. <</dialog>> <div class="button-row"> <<regButton "yuki-intro8-8" "Fuck her with random items">> </div> </div> <<backend>>[[yuki-intro8-8]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki3/yuki3-" 10 14>> <<dialog "Yuki">>Ahhhh~ <</dialog>> <<dialog "You">>Why do I find this hot? <</dialog>> <<dialog "Yuki">>Hnnnggggg~ <</dialog>> <div class="button-row"> <<regButton "yuki-intro8-9" "End">> </div> </div> <<backend>>[[yuki-intro8-9]] <<time 0 15>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<dialog "You">>So... That was weird. <</dialog>> <<dialog "Yuki">>It was, wasn't it? But did you enjoy it? <</dialog>> <<dialog "You">>If I didn't have a tent in my pants right now, I'd say so. <</dialog>> <<dialog "Yuki">>Then you better come back tomorrow~ <</dialog>> <<dialog "You">>Really? <</dialog>> <<dialog "Yuki">>You'll see when you come back~ No need to walk me home, by the way~ I have something I need to do~ <</dialog>> <div class="button-row"> <<if $gallery>> <<regButton "gallery-crud" "Back to Gallery">> <<else>> <<regButton "konbini" "End">> <</if>> </div> </div> <<backend>>[[yuki3-1]] <<time 0 1>> <<set $yuki.social = 8>> <<set $yuki.day = $dayIndex + 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<dialog "Yuki">>So you're here. <</dialog>> <<dialog "You">>After all of that, there's no way I wouldn't be here. <</dialog>> <<dialog "Yuki" "Handing you a uniform">>You know the drill. <</dialog>> <<dialog "You">>I can't believe this is happening. <</dialog>> <<dialog "Yuki">>I have a request though. <</dialog>> <<dialog "You">>What is it? <</dialog>> <<dialog "Yuki">>This is non-negotiable. You can't say no. <</dialog>> <<dialog "You">>Alright. Hit me. <</dialog>> <<dialog "Yuki">>No questions asked! <</dialog>> <<dialog "You">>I get it already! <</dialog>> <<dialog "Yuki">>I... want it filmed. <</dialog>> <<dialog "You" "Shocked">>Filmed!? Why? <</dialog>> <<dialog "Yuki">>I said no questions asked! <</dialog>> <div class="button-row"> <<regButton "yuki3-2" "Her co-worker walks in">> </div> </div> <<backend>>[[yuki3-2]] <<set $player.money -= 500>> <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<dialog "You">>Who's this? <</dialog>> <<dialog "Yuki">>He's going to film us. <</dialog>> <<dialog "You">>I don't think I want a dude to get a half-chub from watching my partner have sex. <</dialog>> <<dialog "Yuki">>He's gay. <</dialog>> <<dialog "You">>...I don't think I want a dude to get a half-chub from watching ME have-- <</dialog>> <<dialog "Yuki">>You wanna do this or not?? <</dialog>> <<dialog "You">>...You're lucky you're hot. <</dialog>> <div class="button-row"> <<regButton "yuki3-bj1" "She tries to suck you off">> </div> </div> <<backend>>[[yuki3-bj1]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki3/yuki3-15">> <<dialog "You" "A bit offended">>Why do you look so grossed out? I reeeally washed my dick this morning since I knew this was happening. <</dialog>> <<dialog "Yuki" "Freaked out">>This is my first time seeing a dick, okay? How can you blame me? <</dialog>> <<dialog "You" "Dumbfounded">>... <</dialog>> <<dialog "You" "Shocked">>YOU'RE A VIRGIN!? <</dialog>> <<dialog "Yuki">>Yeah. Well, technically I lost my virginity to a hotdog. <</dialog>> <<dialog "You">>Doesn't count!!! <</dialog>> <div class="button-row"> <<regButton "yuki3-bj2" "She puts it in">> </div> </div> <<backend>>[[yuki3-bj2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki3/yuki3-16">> <<dialog "Yuki" "Freaked out">>Hgggkkk~ Why do you have to be so big? <</dialog>> <<dialog "You">>Why, thank you~ <</dialog>> <div class="button-row"> <<regButton "yuki3-bj3" "Blowjob">> </div> </div> <<backend>>[[yuki3-bj3]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki3/yuki3-" 17 18>> <<dialog "Yuki">>Gkk~ Gkkk~ <</dialog>> <<dialog "You">>Ah~ Yuki, that feels amazing~ <</dialog>> <<dialog "Yuki">>I can't anymore~ My jaw... <</dialog>> <<dialog "You">>Okay, bend over. <</dialog>> <div class="button-row"> <<regButton "yuki3-bend" "She bends over">> </div> </div> <<backend>>[[yuki3-bend]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki3/yuki3-19">> <<dialog "Yuki">>Don't move, okay? Let me do all the work~ <</dialog>> <<dialog "You">>Wha? <</dialog>> <<dialog "Yuki">>You paid me so that's the rule! <</dialog>> <<dialog "You">>Okay? <</dialog>> <div class="button-row"> <<regButton "yuki3-doggy" "Doggy">> </div> </div> <<backend>>[[yuki3-doggy]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki3/yuki3-20">> <<dialog "Yuki">>Does that feel good? <</dialog>> <<dialog "You">>Yeah. It does. You're tight, Yuki~ <</dialog>> <<dialog "Yuki">>That's a virgin pussy for you~ <</dialog>> <div class="button-row"> <<regButton "yuki3-cow" "Cowgirl">> </div> </div> <<backend>>[[yuki3-cow]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki3/yuki3-21">> <<dialog "Yuki">>How about this? Am I doing this right? <</dialog>> <<dialog "You">>Just let me move, Yuki. <</dialog>> <<dialog "Yuki">>No waaay! <</dialog>> <div class="button-row"> <<regButton "yuki3-rcow" "Reverse Cowgirl">> </div> </div> <<backend>>[[yuki3-rcow]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki3/yuki3-22">> <<dialog "Yuki">>Ahhh~ Okay, this is good~ It's sliding in and out now~ <</dialog>> <<dialog "You">>Ahhh~ Okay~ That's way better~ <</dialog>> <<dialog "Yuki">>My legs are tired. You be on top now. <</dialog>> <<dialog "You">>... <</dialog>> <div class="button-row"> <<regButton "yuki3-mis" "Missionary">> </div> </div> <<backend>>[[yuki3-mis]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki3/yuki3-23">> <<dialog "Yuki">>Oh~ Okay~ This feels way better when you're not the one moving~ <</dialog>> <<dialog "You">>I-it's so cramped in here. <</dialog>> <<dialog "Yuki">>Power through! <</dialog>> <<dialog "You" "Internally">>This is getting weird. I should just cum. <</dialog>> <<dialog "You">>I'm cumming, Yuki~ <</dialog>> <<dialog "Yuki">>Do it inside~ <</dialog>> <<dialog "You">>Seriously? <</dialog>> <<dialog "Yuki">>Yeah~ <</dialog>> <div class="button-row"> <<regButton "yuki3-cum" "Cum inside">> </div> </div> <<backend>>[[yuki3-cum]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki3/yuki3-24">> <<dialog "Yuki">>Ahhh~ You came~ <</dialog>> <<dialog "You">>Damn. That felt good~ <</dialog>> <div class="button-row"> <<regButton "yuki3-cream" "Pull out">> </div> </div> <<backend>>[[yuki3-cream]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki3/yuki3-25">> <<dialog "Yuki">>You're taking responsibility, right~? <</dialog>> <div class="button-row"> <<regButton "yuki3-end" "Panic">> </div> </div> <<backend>>[[yuki3-end]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki3/yuki3-26">> <<dialog "You">>U-um... <</dialog>> <<dialog "Yuki">>I'm kidding! I'm on birth control. Get out of here, I'm going to get changed. See you tomorrow. <</dialog>> <div class="button-row"> <<if $gallery>> <<regButton "gallery-crud" "Back to Gallery">> <<else>> <<regButton "konbini" "Leave">> <</if>> </div> </div> <<backend>>[[yuki-aph-1]] <<time 0 1>> <<set $yuki.quest = 3>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<dialog "Yuki">>You're here! <</dialog>> <<dialog "You">>Hey! I'm just gonna buy some-- <</dialog>> <<dialog "Yuki">>Come with me. <</dialog>> <<dialog "You">>What's going on. <</dialog>> <<dialog "Yuki">>I know you were... disappointed with our first time. <</dialog>> <<dialog "You">>Well... I don't know about disappointed, it was good. It was just a bit cramped. <</dialog>> <<dialog "Yuki">>Sooo! We're going to do it again. For free~ <</dialog>> <<dialog "You">>You know what? It was pretty disappointing that we couldn't go all out so yes, we should do it again. Right now. <</dialog>> <<dialog "Yuki">>Calm down! Here. <</dialog>> <div class="button-row"> <<regButton "yuki-aph-2" "She hands you something">> </div> </div> <<backend>>[[yuki-aph-2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/aph/intro1">> <<dialog "You" "Reading the label">>Honey pack? <</dialog>> <<dialog "Yuki">>You don't know what a honey pack is? <</dialog>> <<dialog "You">>Nope. <</dialog>> <<dialog "Yuki">>It's a performance enhancer for sex. <</dialog>> <<dialog "You">>Hah. Like I need something like that. <</dialog>> <<dialog "Yuki">>Uh huh. Come with me to the back. <</dialog>> <div class="button-row"> <<regButton "yuki-aph-3" "Walk with her">> </div> </div> <<backend>>[[yuki-aph-3]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/aph/intro2">> <<dialog "You">>We're going to do it in front of this guy again? <</dialog>> <<dialog "Yuki">>Like I said, It's fine. He's used to it. He's my muscle. <</dialog>> <<dialog "You" "Mumbling to yourself">>I could knock him out with one punch though. <</dialog>> <<dialog "Yuki">>What was that? <</dialog>> <<dialog "You">>Nothing. Let me try the honey pack. <</dialog>> <div class="button-row"> <<regButton "yuki-aph-kiss1" "Drink it all">> </div> </div> <<backend>>[[yuki-aph-kiss1]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<dialog "Yuki">>Wait! We're both supposed to take half!! <</dialog>> <<dialog "You">>Wh-wha? <</dialog>> <<dialog "Yuki">>You just drank two doses... <</dialog>> <<dialog "You">>I... I feel weird... <</dialog>> <<dialog "Yuki">>Crap. Why are you looking at me like that? <</dialog>> <<vid "yuki/aph/kissa">> <<dialog "Yuki">>Mmmmmpppphhh!!! <</dialog>> <div class="button-row"> <<regButton "yuki-aph-pounce" "Pounce on her">> </div> </div> <<backend>>[[yuki-aph-pounce]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/aph/attack1">> <<dialog "Yuki">>Calm down! Calm down! <</dialog>> <<dialog "You">>Y-yuki! I feel so hot!! <</dialog>> <<dialog "Yuki">>Sh-shit! <</dialog>> <div class="button-row"> <<regButton "yuki-aph-tits" "Suck on her tits">> </div> </div> <<backend>>[[yuki-aph-tits]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/aph/attack2">> <<dialog "Yuki">>Ahh~ Why did you drink all of it???? <</dialog>> <<dialog "You">>Mmm! Slurp~ <</dialog>> <<dialog "Yuki">>Ahhh~ <</dialog>> <div class="button-row"> <<regButton "yuki-aph-kiss2" "Kiss her">> </div> </div> <<backend>>[[yuki-aph-kiss2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/aph/kissb" 1 2>> <<dialog "Yuki">>Mmmm~ <</dialog>> <<dialog "You">>Yuki~ <</dialog>> <div class="button-row"> <<regButton "yuki-aph-bja" "Blowjob">> </div> </div> <<backend>>[[yuki-aph-bja]] <<time 0 2>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/aph/bja" 1 2>> <<dialog "You">>Suck me off!! <</dialog>> <<dialog "Yuki">>Hnngggkkk~ Ggkk~ Ggkk~ <</dialog>> <div class="button-row"> <<regButton "yuki-aph-bjb" "Intensify">> </div> </div> <<backend>>[[yuki-aph-bjb]] <<time 0 2>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/aph/bjb" 1 2>> <<dialog "Yuki">>Waaaii--gggkkk Ggkkk <</dialog>> <div class="button-row"> <<regButton "yuki-aph-rub" "Rub her pussy">> </div> </div> <<backend>>[[yuki-aph-rub]] <<time 0 2>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/aph/cun">> <<dialog "You">>Ahhh~ I want a taste~ <</dialog>> <<dialog "Yuki">>Ahhhhhhh~ Th-that feels good~ <</dialog>> <div class="button-row"> <<regButton "yuki-aph-fin" "Make her squirt">> </div> </div> <<backend>>[[yuki-aph-fin]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/aph/rub">> <<dialog "Yuki">>Ahhhh~ Wait! Ahhhhhhh~ <</dialog>> <<dialog "You">>Your panties are already soaking~ <</dialog>> <div class="button-row"> <<regButton "yuki-aph-cun" "Eat her out">> </div> </div> <<backend>>[[yuki-aph-cun]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/aph/finger">> <<dialog "Yuki">>AHHHHHH~ <</dialog>> <<dialog "You">>It's like a fountain! <</dialog>> <div class="button-row"> <<regButton "yuki-aph-misa" "Fuck her">> </div> </div> <<backend>>[[yuki-aph-misa]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/aph/misa" 1 3>> <<dialog "Yuki">>AHHH~ AHHH~ You're really~ AHHHH~ going at it~ <</dialog>> <<dialog "You">>It's so tiiiight~ <</dialog>> <div class="button-row"> <<regButton "yuki-aph-prone" "Pronebone">> <<regButton "yuki-aph-carry" "Carry">> <<regButton "yuki-aph-cabinet" "Doggy against the cabinet">> <<regButton "yuki-aph-doggy" "Standing Doggy">> <<regButton "yuki-aph-misb" "Missionary on the table">> </div> </div> <<backend>>[[yuki-aph-prone]] <<time 0 1>> <<set $hidenav = 3>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/aph/prone" 1 3>> <<dialog "Yuki">>Ahhhhh~ I think I'm about toooooo~ <</dialog>> <<dialog "You">>Cum for me, Yuki!! <</dialog>> <div class="button-row"> <<regButton "yuki-aph-prone-cum" "Make her cum">> </div> </div> <<backend>>[[yuki-aph-prone-cum]] <<time 0 3>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/aph/prone-cum">> <<dialog "Yuki">>HNNGGGGG~ AHHHHHHH~ <</dialog>> <div class="button-row"> <<regButton "yuki-aph-misa" "Missionary on the floor">> <<regButton "yuki-aph-carry" "Carry">> <<regButton "yuki-aph-cabinet" "Doggy against the cabinet">> <<regButton "yuki-aph-doggy" "Standing Doggy">> <<regButton "yuki-aph-misb" "Missionary on the table">> </div> </div> <<backend>>[[yuki-aph-carry]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/aph/carry" 1 2>> <<dialog "Yuki">>Ahhhhh~ Holy crap~ Ahhhhh~ You're so strong~ <</dialog>> <div class="button-row"> <<regButton "yuki-aph-misa" "Missionary on the floor">> <<regButton "yuki-aph-prone" "Pronebone">> <<regButton "yuki-aph-cabinet" "Doggy against the cabinet">> <<regButton "yuki-aph-doggy" "Standing Doggy">> <<regButton "yuki-aph-misb" "Missionary on the table">> </div> </div> <<backend>>[[yuki-aph-cabinet]] <<time 0 2>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/aph/cabinet" 1 2>> <<dialog "Yuki">>Waiiiiit~ Ahhhhh~ You're too rough~ <</dialog>> <<dialog "You">>I'm gonna make you cum~ <</dialog>> <<dialog "Yuki">>I-I... Feel it~ Ahhhh~ <</dialog>> <div class="button-row"> <<regButton "yuki-aph-cabinet-cum" "Make her cum">> </div> </div> <<backend>>[[yuki-aph-cabinet-cum]] <<time 0 2>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/aph/cabinet-cum">> <<dialog "Yuki">>Ahhhhhh~ That was awesome~ <</dialog>> <div class="button-row"> <<regButton "yuki-aph-misa" "Missionary on the floor">> <<regButton "yuki-aph-prone" "Pronebone">> <<regButton "yuki-aph-carry" "Carry">> <<regButton "yuki-aph-doggy" "Standing Doggy">> <<regButton "yuki-aph-misb" "Missionary on the table">> </div> </div> <<backend>>[[yuki-aph-doggy]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/aph/doga1">> <<dialog "Yuki">>Ahhh~ You're shaking meee~ <</dialog>> <div class="button-row"> <<regButton "yuki-aph-doggy2" "Harder">> </div> </div> <<backend>>[[yuki-aph-doggy2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/aph/dogb" 1 3>> <<dialog "Yuki">>Fuuuuuck~ I think I'm about to cum agaaain~ <</dialog>> <div class="button-row"> <<regButton "yuki-aph-doggy-cum" "Make her cum">> </div> </div> <<backend>>[[yuki-aph-doggy-cum]] <<time 0 3>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/aph/dog-cum">> <<dialog "Yuki">>Hngggg~ Ahhhh~ My legs can't take it~ <</dialog>> <div class="button-row"> <<regButton "yuki-aph-misa" "Missionary on the floor">> <<regButton "yuki-aph-prone" "Pronebone">> <<regButton "yuki-aph-carry" "Carry">> <<regButton "yuki-aph-cabinet" "Doggy against the cabinet">> <<regButton "yuki-aph-misb" "Missionary on the table">> </div> </div> <<backend>>[[yuki-aph-misb]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/aph/misb" 1 3>> <<dialog "Yuki">>Ahhhhh~ Fuck it, keep going~ Use me~ <</dialog>> <div class="button-row"> <<regButton "yuki-aph-misa" "Missionary on the floor">> <<regButton "yuki-aph-prone" "Pronebone">> <<regButton "yuki-aph-carry" "Carry">> <<regButton "yuki-aph-cabinet" "Doggy against the cabinet">> <<regButton "yuki-aph-hard" "Finish it">> </div> </div> <<backend>>[[yuki-aph-hard]] <<time 0 3>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<dialog "You">>I'm speeding up. <</dialog>> <<dialog "Yuki">>You mean this isn't fast yet? How are you so-- <</dialog>> <<vid "yuki/aph/hard" 1 2>> <<dialog "Yuki">>AHHHHHH!!! WAAAIT~ <</dialog>> <<dialog "You">>I'M COMIIING~ <</dialog>> <div class="button-row"> <<regButton "yuki-aph-cum" "Cum">> </div> </div> <<backend>>[[yuki-aph-cum]] <<time 0 2>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/aph/cum">> <<dialog "Yuki">>Hmmmmmppfff! Not in the mouth~ <</dialog>> <div class="button-row"> <<regButton "yuki-aph-end" "Postnut clarity hits you">> </div> </div> <<backend>>[[yuki-aph-end]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/aph/end">> <<dialog "You">>F-fuck... Yuki... I'm sorry... I just couldn't... <</dialog>> <<dialog "Yuki">>Hahahaha! That was great! You were like a wild animal~ <</dialog>> <<dialog "You">>I'm really sorry... <</dialog>> <<dialog "Yuki">>Don't worry about it. I should have warned you about the honey pack properly. <</dialog>> <div class="button-row"> <<regButton "yuki-aph-end2" "She gets up to fix herself up">> </div> </div> <<backend>>[[yuki-aph-end2]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<vid "yuki/yuki3/yuki3-26">> <<dialog "You">>Hey, Yuki? I wann say sorry again... <</dialog>> <<dialog "Yuki">>Stop that~ I enjoyed it~ You paid for it anyways. Thanks again for the patronage~ <</dialog>> <<dialog "You">>Okay. Are you sure you don't want to get paid? <</dialog>> <<dialog "Yuki">>I'm sure... <</dialog>> <<dialog "You" "Turning to leave">>Okay~ <</dialog>> <<dialog "Yuki">>Hey, $player.name? <</dialog>> <<dialog "You">>Hm? <</dialog>> <<dialog "Yuki">>I'm glad I got to do this with you... Now get out of here! I'm changing! <</dialog>> <div class="button-row"> <<if $gallery>> <<regButton "gallery-crud" "Back to Gallery">> <<else>> <<regButton "konbini" "Leave">> <</if>> </div> </div> <<backend>>[[yuki4-1]] <<set $yuki.social = 9>> <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<dialog "You">>Huh... Where's Yuki? <</dialog>> <div class="button-row"> <<regButton "yuki4-2" "You see her outside">> </div> </div> <<backend>>[[yuki4-2]] <<set $hidenav = 1>> <</backend>>
<<bg "konbini" $hour>> <div class="content-panel"> <<dialog "You">>Hey, Yuki! Why are you out here? <</dialog>> <<dialog "Yuki" "Gloomy">>Oh... $player.name... I... have an appointment. <</dialog>> <img src="img/misc/yuki-sad.jpg" style="max-width: 40%;"> <<dialog "You">>Hey. Are you okay? <</dialog>> <<dialog "Yuki" "Gloomy">>Yeah. I gotta go. <</dialog>> <<dialog "You" "Internally">>Is she taking customers outside again? She didn't look good. <</dialog>> <div class="button-row"> <<regButton "yuki4-3" "Secretly follow her">> </div> </div> <<backend>>[[yuki4-3]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "alley">> <div class="content-panel"> <<dialog "You" "Internally">>I'll wear glasses so she doesn't notice me... Huh? Who's that baldie? <</dialog>> <<dialog "Loan Shark" "" "enemies" "loanshark">>Ah~ You bitch. You made me wait a while. <</dialog>> <<dialog "Yuki">>I had to work... <</dialog>> <<dialog "Loan Shark" "" "enemies" "loanshark">>Work? I told you to quit that already~ You failed to pay your debt on time, so I'm going to sell you anyways. <</dialog>> <<dialog "Yuki" "Scared">>What are you talking about? Sell me? The deal was for me to do porn! <</dialog>> <<dialog "Loan Shark" "" "enemies" "loanshark">>Turns out, there's more money in sex trafficking~ Kekeke~ <</dialog>> <<dialog "Yuki" "Panicking">>Th-that wasn't the deal! <</dialog>> <<dialog "Loan Shark" "" "enemies" "loanshark">>Kekeke~ I have people watching people you love~ You can't escape~ <</dialog>> <<dialog "Yuki" "Scared">>N-no! <</dialog>> <<dialog "Loan Shark" "" "enemies" "loanshark">>But, I'm a nice guy~ I'll send you off to a good whorehouse, the ones that maybe probably vets for STDs, if you take care of me tonight~ Come with me. <</dialog>> <<dialog "Yuki" "in Despair">>... <</dialog>> <img src="img/misc/yuki-loan1.jpg" style="max-width: 50%;"> <<dialog "You">>... <</dialog>> <div class="button-row"> <<regButton "yuki4-4" "Intervene">> </div> </div> <<backend>>[[yuki4-4]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "alley">> <div class="content-panel"> <img src="img/misc/yuki-loan2.jpg" style="max-width: 60%;"> <<dialog "You">>I heard everything. <</dialog>> <<dialog "Yuki" "Shocked">>$player.name! <</dialog>> <<dialog "Loan Shark" "" "enemies" "loanshark">>Hah? Is this bitch your girlfriend or something? You poor bastard. If you let go, I'll let you fuck her for free kekeke~ <</dialog>> <<dialog "Yuki" "Scared">>H-hey... $player.name. Let him go. You don't want to get involved. <</dialog>> <<dialog "You">>... <</dialog>> <div class="button-row"> <<regButton "yuki4-5" "He insults her">> </div> </div> <<backend>>[[yuki4-5]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "alley">> <div class="content-panel"> <img src="img/misc/yuki-loan3.jpg" style="max-width: 60%;"> <<dialog "Loan Shark" "" "enemies" "loanshark">>Listen to your bitch, kid. <</dialog>> <<dialog "You">>Call her a bitch one more time. <</dialog>> <<dialog "Loan Shark" "" "enemies" "loanshark">>She's a b-- <</dialog>> <div class="button-row"> <<regButton "yuki4-6" "Rock his shit">> </div> </div> <<backend>>[[yuki4-6]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "alley">> <div class="content-panel"> <img src="img/misc/yuki-loan4.jpg" style="max-width: 60%;"> <<dialog "Yuki" "Shocked">>Wh-what!? <</dialog>> <<dialog "You" "Pissed">>Fucker. <</dialog>> <<dialog "Yuki" "Panicked">>Let's get out of here!! <</dialog>> <img src="img/misc/yuki-loan5.jpg" style="max-width: 60%;"> <div class="button-row"> <<regButton "yuki4-7" "Run to the Convenience Store">> </div> </div> <<backend>>[[yuki4-7]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<dialog "Yuki" "Angry">>Why??? Why. Why. Why do you always resort to beating people up? <</dialog>> <<dialog "You">>He was going to sell you, Yuki. <</dialog>> <<dialog "Yuki" "Frustrated">>That's... Not your business! They're gangsters, $player.name! Now even my family is in danger because of you! <</dialog>> <<dialog "You">>You said you were going to do porn. Is that why you insisted on filming us do it? You used me as a practice dummy? <</dialog>> <<dialog "Yuki" "Angry">>This is NOT the time to talk about this! You are NOTHING to me. We're not dating, we're not even friends. You're just a fucking customer. <</dialog>> <<dialog "You">>Is that why you filmed us!? Answer me! <</dialog>> <<dialog "Yuki" "Breaking down">>No! Hell fucking no! How are you so fucking dense!? I had feelings for you and knowing that I'm about to go sell off my body for everyone to see, I wanted to keep a recording of me doing it with someone I actually like. <</dialog>> <div class="button-row"> <<regButton "yuki4-8" "She collapses to the ground">> </div> </div> <<backend>>[[yuki4-8]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<dialog "Yuki" "Crying">>You should have just left me alone, $player.name. <</dialog>> <<dialog "You">>I'll handle it. <</dialog>> <<dialog "Yuki" "Crying">>You can't handle it, they're gangsters. <</dialog>> <<dialog "You">>Will you be safe here? <</dialog>> <<dialog "Yuki" "Calming down">>...Yes. $player.lastname Hideo owns this neighborhood... He's the guardian of Kumine. They're not going to cause a scene here... <</dialog>> <<dialog "You">>Perfect. Take my coat while I go handle it. <</dialog>> <div class="button-row"> <<regButton "yuki4-9" "She stands up">> </div> </div> <<backend>>[[yuki4-9]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<dialog "Yuki" "Reading the name tag">>So this is your full name... $player.lastname $player.name. <</dialog>> <<dialog "You">>Stay here, okay? <</dialog>> <<dialog "Yuki" "Stunned">>$player.lastname? Like $player.lastname Hideo? Don't tell me... <</dialog>> <<dialog "You">>I'll be back! <</dialog>> <<dialog "Yuki" "Panicked">>HUH!? Wait!!! Are you his son or something!? Waaaait! <</dialog>> <<dialog "Yuki" "Shocked">>Did I just... start a gang war? <</dialog>> <div class="button-row"> <<regButton "yuki4-10" "Go to your uncle">> </div> </div> <<backend>>[[yuki4-10]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "uncle-house" $hour>> <div class="content-panel"> <<dialog "You">>Hey, Uncle. <</dialog>> <<dialog "Uncle">>What's up, kid? <</dialog>> <<dialog "You">>I just came to let you know. I'm about to start a war. <</dialog>> <<dialog "Uncle">>Huh? With who? <</dialog>> <<dialog "You">>No idea. A bunch of loan sharks. They touched my girl. You can't stop me. I just came to let you know that I'm about to cause you a lot of headache. <</dialog>> <<dialog "Uncle">>Hah! I'll come with you. I don't like loan sharks anyway. Big Bro Isao doesn't like taking advantage of poor people. We were poor once after all~ <</dialog>> <<dialog "You">>You don't have to, you know? I can crush them alone. <</dialog>> <<dialog "Uncle">>I don't doubt you, but let me get a warm up before the headache comes. Besides, you don't even know where they're at. <</dialog>> <<dialog "You">>Ugk... Suit yourself. <</dialog>> <<dialog "Uncle">>Heh. Like father like son~ <</dialog>> <div class="button-row"> <<regButton "yuki4-11" "Go Shark Hunting">> </div> </div> <<backend>>[[yuki4-11]] <<time 0 15>> <<set $hidenav = 1>> <</backend>>
<<bg "business-area" $hour>> <div class="content-panel"> <<dialog "You">>Wow, there's a lot of people. <</dialog>> <<dialog "Uncle">>That looks like the Yamaguchi clan. Did you attack one of them? They look like they're looking for you. <</dialog>> <<dialog "You">>Err... <</dialog>> <<dialog "Uncle">>As impatient as always. <</dialog>> <<dialog "You">>Let's just break through. <</dialog>> <<dialog "Uncle">>After you~ <</dialog>> <div class="button-row"> <<regButton "yuki4-12" "Break through">> </div> </div> <<backend>>[[yuki4-12]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "business-area" $hour>> <div class="content-panel"> <img src="img/misc/yuki-raid1.jpg" style="max-width: 60%;"> <<dialog "Loan Shark" "" "enemies" "loanshark">>Wh-what? You! Why are you with... $player.lastname Hideo? <</dialog>> <<dialog "Uncle">>That's the least of your concern though, right? <</dialog>> <div class="button-row"> <<regButton "yuki4-13" "Threaten the Loan Shark">> </div> </div> <<backend>>[[yuki4-13]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "business-area" $hour>> <div class="content-panel"> <img src="img/misc/yuki-raid2.jpg" style="max-width: 60%;"> <<dialog "Loan Shark" "" "enemies" "loanshark">>You're the brat from earlier! <</dialog>> <<dialog "You">>The terms of the contract is illegal. So, it's void. Prostitution is illegal, idiot. Now, do as I say before I break every bone in your body. <</dialog>> <<dialog "Uncle">>You just caused trouble on my turf. You better do as I say, okay? <</dialog>> <<dialog "Loan Shark" "" "enemies" "loanshark">>Okay! Okay! <</dialog>> <div class="button-row"> <<regButton "yuki4-14" "Make him write up a contract">> </div> </div> <<backend>>[[yuki4-14]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "business-area" $hour>> <div class="content-panel"> <<dialog "You">>Write the contract right here. Call Yuki to let her know. <</dialog>> <<dialog "Loan Shark" "" "enemies" "loanshark">>S-sure... <</dialog>> <img src="img/misc/yuki-raid3.jpg" style="max-width: 60%;"> <<dialog "You">>Give me the phone, baldie. <</dialog>> <<dialog "Loan Shark" "Internally" "enemies" "loanshark">>B-baldie's a little harsh... <</dialog>> <<dialog "Yuki" "Over the phone">>Hello? <</dialog>> <<dialog "You">>Hey! I'll come by in a bit to give you your contract~ <</dialog>> <<dialog "Yuki" "Over the phone">>O-okay... <</dialog>> <<dialog "You">>Uncle. Can I leave the rest to you? <</dialog>> <<dialog "Uncle">>Sure~ This baldie is pretty fat though~ I don't think I can sell his organs for much. Tsk. <</dialog>> <<dialog "Loan Shark" "Internally" "enemies" "loanshark">>B-but! I did what you asked! I let the girl go! <</dialog>> <<dialog "Uncle">>Ehhh? Did I ask you for anything? That was my nephew~ I'm not $player.name, you know~ <</dialog>> <<dialog "Loan Shark" "Internally" "enemies" "loanshark">>Hiiik~ NOOOOOO!!! <</dialog>> <div class="button-row"> <<regButton "yuki4-15" "Go to Yuki">> </div> </div> <<backend>>[[yuki4-15]] <<time 0 1>> <<set $hidenav = 1>> <</backend>>
<<bg "konbini-int">> <div class="content-panel"> <<dialog "You">>Hey. Here's your contract. Your debt is cleared. <</dialog>> <<dialog "Yuki">>Th-thank you. <</dialog>> <<dialog "You">>You don't look too happy. <</dialog>> <<dialog "Yuki">>You... you were a gangster? <</dialog>> <<dialog "You">>...Is that a problem? <</dialog>> <<dialog "Yuki" "Upset">>Gangsters made my life a living hell, you know!? <</dialog>> <<dialog "You">>That's not me, though. <</dialog>> <<dialog "Yuki">>I'm thankful for you. I really am. It's just that... I'm scared. I worked so hard just to get away from them. I don't know if I wanna involve myself with one. <</dialog>> <<dialog "You">>Yuki... I'm not like them. You know me. <</dialog>> <<dialog "Yuki">>That's just it! I know you! Every time you've helped me, you resorted to violence. Even your shoes right now has blood. <</dialog>> <<dialog "You">>That's... <</dialog>> <<dialog "Yuki">>I need time to think. Please leave... <</dialog>> <<dialog "You">>Yuki... <</dialog>> <div class="button-row"> <<regButton "yuki4-16" "Go home">> </div> </div> <<backend>>[[yuki4-16]] <<time 0 15>> <<set $hidenav = 1>> <</backend>>
<<bg "uncle-house" $hour>> <div class="content-panel"> <<dialog "You" "Bummed">>I'm home... <</dialog>> <<dialog "Uncle">>Woah! You good? I thought you'd be having a sleepover party with your lady friend right now. What happened? <</dialog>> <<dialog "You">>Sigh. It scared her off. <</dialog>> <<dialog "Uncle">>Yup. That'll do. Some people don't like gangsters... <</dialog>> <<dialog "You">>This sucks, but... I'm glad she'll be okay now. <</dialog>> <<dialog "Uncle">>That's right. Look at the bright side. I hate to do this, but I have more bad news... <</dialog>> <<dialog "You">>Did I start another war? <</dialog>> <<dialog "Uncle">>I got information from that baldie. The Yamaguchi clan knows you're here. <</dialog>> <<dialog "You">>... I can take them. <</dialog>> <<dialog "Uncle">>Calm down, kid. They probably won't touch you. As you know, Kumine isn't conquered by any gang yet. The reason is the schools around here. Here's the problem... <</dialog>> <div class="button-row"> <<regButton "yuki4-17" "Continue">> </div> </div> <<backend>>[[yuki4-17]] <<time 0 25>> <<set $hidenav = 1>> <</backend>>
<<bg "uncle-house" $hour>> <div class="content-panel"> <<dialog "Uncle">>You've met Seiya, right? <</dialog>> <<dialog "You">>Yeah? <</dialog>> <<dialog "Uncle">>So you know that we're almost in control of Aoba? <</dialog>> <<dialog "You">>I guess. <</dialog>> <<dialog "Uncle">>Yamaguchi is not lazing around, they control a school in Kumine too. Tekijime High. <</dialog>> <<dialog "You">>Tekijime, huh? <</dialog>> <<dialog "Uncle">>Yamaguchi is preparing to take over the schools too. Crime has been up. They're aiming to tire the students out. You should watch out too. Take care of Yuki-chan. <</dialog>> <<dialog "You">>I'll keep an eye out. <</dialog>> <<dialog "Uncle">>Since the Yamaguchi clan know about you, Tekijime will probably start messing with you. You think you can take them? <</dialog>> <<dialog "You">>I'll crush them. <</dialog>> <div class="button-row"> <<regButton "home" "Continue">> </div> </div> <<backend>>[[yuki4-17]] <<time 0 1>> <<set $yuki.quest = 4>> <<set $yuki.day = $dayIndex + 1>> <<set $hidenav = 1>> <</backend>>